html{
  scroll-behavior: smooth;
}
body{
  padding-left: 10px;
  padding-right: 10px;
}
.bg-white{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar-brand{
    font-size: 24px;
}
.nav-link{
    font-size: 18px;
}
.img{
  width: 400px;
  height: 400px;
}

.section-img{
      width: 100%;
      height: 50vh;
      display: flex;
      justify-content: center;
      align-items: end;
}
.section-text{
      width: 100%;
      margin-top: 30px;
      margin-bottom: 30px;
      padding-left: 10px;
      padding-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bolder;
    padding: 5px 15px 5px 15px;
    border: 2px solid white;
    border-radius: 25px;
    max-width: 600px;
    margin: 40px;
    background-color: transparent;
    backdrop-filter: blur(7px);
    animation: flutua 5s ease-in-out infinite;
    transition: 0.5s ease-in-out;
}
.btn{
  color: black;
  border: 2px solid black;
}
a:hover{
    text-decoration: none;
}
.button:hover{
  border: 2px solid black;
  color: black;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@keyframes flutua {
    0%{
      transform: translateY(0px);
    }
    50%{
      transform: translateY(5px);
    }
    100%{
      transform: translateY(0px);
    }
}
.Logo{
    width: 200px;
}