/* Navbar */
#main-navbar {
  background-color: transparent;
  padding: 10px 20px;
  flex-shrink: 0;
}


.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logo {
  width: 80px !important;
  height: auto;
}

#title {
  font-weight: bold;
  font-size: 2rem;
  color: white;
  margin: 0;
  padding: 40px;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

#nav-list {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.nav-link {
  color: white;
  font-size: 1.3rem;
  transition: 0.3s;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

.nav-link:hover {
  color: #f4d03f;
}


/* body */

body {
  background-color: #136769;
}

.card {
  background-color: #e9b33c;
  border-radius: 10px;
}

.paint {
  border-radius: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

.text-outline {
  color: white;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}


/* card */
.card {
  background-color: #e9b33c;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Footer */
#footer {
  background-color: #000;
  color: #FFF;
  text-align: center;
  margin: 0;
  padding: 20px;
}

#social-container ul,
#footer-links-container ul {
  list-style-type: none;
  padding: 0;
}

#social-container li,
#footer-links-container li {
  display: inline-block;
  margin: 0 20px;
}

#social-container li {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  transition: .5s;
  line-height: 3;
}

#social-container li:hover {
  background-color: #333;
}

#social-container a,
#footer-links-container a {
  color: #FFF;
  transition: .5s;
}

#social-container li i {
  font-size: 25px;
}

#footer-links-container {
  margin: 30px 0;
}




/* Btn */
@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');

.custom-btn {
  width: 180px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #91C9FF;
  outline: none;
  transition: 1s ease-in-out;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.btn-center {
  display: flex;
  justify-content: center;
}

.custom-btn svg {
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
  z-index: 1;
}

.custom-btn:hover {
  background: #4F95DA;
}

.custom-btn:hover svg {
  stroke-dashoffset: -480;
}

.custom-btn span {
  color: white;
  font-size: 18px;
  font-weight: 100;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media(max-width: 450px) {

  #main-container {
    padding: 20px;
  }

}