.colors {
  color: rgb(29, 179, 192);
  color: rgb(242, 230, 214);
  color: #53DFD1;
  color: #59D7EE;
  color: #9DE3F6;
  color: #D3F4FB;
}

@font-face {
  font-family: 'Raleway'; 
  src: url('static/fonts/Raleway-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal; 
}

body.home-page {
  font-family: Arial, sans-serif;
  background-image: url('static/images/background.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: rgb(147, 147, 147);
  background-blend-mode: overlay;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  overflow: hidden; 
}

.parent-container {
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.logo-container {
  background-color: rgba(255, 255, 255, 0.315);
  border-radius: 10px;

  display: flex;
  align-items: center; 
  justify-content: center;
  position: relative;
  max-width: fit-content;

  margin-bottom: 50px;
  padding-top: 20px;
  padding-bottom: 20px;

  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  
}

.logo {
  max-width: 70%;
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  text-decoration: underline;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  background-image: linear-gradient(45deg, #ffbf6c, #ffd9a7, #ffbf6c, #ffd9a7, #ffbf6c);
  color: #333;
  border-radius: 10px;
  border: 2px solid #333;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  min-width: 170px;
  display: inline-block;
  font-size: 24px;

  background-size: 300% 100%;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn.inline {
  font-size: 16px;
}

.btn.home {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  animation: fade-in 0.2s ease-in forwards;
  animation-delay: 2s;
}

.btn:hover {
  background-color: #F2E6D6;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);

  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.services {
  .btn {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.socials-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;

  padding-top: 35px;
  text-align: center;

  a {
      text-decoration: none;
  }
}

.socials {
  width: 50px;
  margin-left: 10px;
  margin-right: 10px;
  
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;

  opacity: 0;
  filter: blur(4px);
  animation: fade-in 0.2s ease-in forwards;
  animation-delay: 2s;
}


@media (max-width: 600px) {
  .logo-container {
    height: auto; 
  }

  .logo {
    max-width: 100%;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 15px; 
  }

  .btn {
    width: 100%; 
    max-width: 200px;
    font-size: 16px;
  }

  .socials {
    width: 40px;
  }
}

body.about {
  font-family: Arial, sans-serif;
  background-image: url('static/images/background-2.png');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-color: rgb(230, 230, 230);
  background-blend-mode: overlay;
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body.services {
  font-family: Arial, sans-serif;
  background-color: rgb(255, 255, 255);
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.about-container, .services-container {
  display: flex;
  margin: 40px;
  flex-direction: column;
}

.service-item {
  border: 2px solid #333;
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 10px;
  background-color: #daf6ff;
}

.about-picture {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 25%;
}

.about-picture img {
  max-width: 90%; 
  height: auto;
  border-radius: 15px;
}

.about-qa {
  flex: 1;
}

h1 {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 42px;
}

h2 {
  margin: 0;
}

.back-home {
  padding: 40px;
}

p {
  font-size: 16px;
  line-height: 1.4;
}

p.intro {
  margin-top: 0;
}
  

@media screen and (min-width: 768px) {
  .about-container {
    flex-direction: row;
  }

  .about-qa {
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .about-container {
    .intro {
      text-align: center;
    }
    
  }

  .about-picture {
    width: 100%;
  }

  .about-picture img {
    max-width: 50%;
    margin: 0 auto 20px auto;
  }
}

@keyframes scale {
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}