.home {
    background-image: url(../img/home_background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    height: 90vh;
}

.home h1 {
    font-size: 6vw;
    font-weight: 600;
}

#conhecanos {
    background: linear-gradient(to right, #003F71 50%, #005092 50% 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    font-size: 1.2vw;
    width: 17vw;
    height: 5vw;
    border-radius: 1.5rem;
    border: 0;
    transition: background-position 0.5s ease;
}

#conhecanos:hover {
    pointer-events: auto;
    cursor: pointer;
    background-position: 100% 0%;
}
