.gabarito {
    font-family: "Gabarito", sans-serif; 
    font-optical-sizing: auto; 
    font-weight: 400; 
    font-style: normal; 
    color: #545454;
}

#banner {
    width: 89vw;
    height: 618px;
    background-image: url(../images/banner.WebP);
    background-position: center;
    background-repeat: no-repeat;
}

#who-am-i {
    width: 89vw;
    height: 618px;
    background-image: url(../images/banner-who-am-i.WebP);
    background-position: center;
    background-repeat: no-repeat;
}

#contact {
    width: 89vw;
    height: 450px;
}

.btn-custom {
    background-color: #f6e58d;
    color: #ff793f;
    border: 2px solid white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    text-shadow: none;
    transition: all 0.3s ease;
 }

.btn-custom:hover {
    background-color: white;
    color: black;
}

.logo-carousel {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
}
  
.carousel-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}
  
 .carousel-track img {
    height: 150px;
    margin: 0 30px;
    vertical-align: middle;
 }
  
 @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
}

footer {
    height: 175px;
    background-color: #ecf0f1;
}