html {
    font-size: 62.5%;
    background-color: hsl(257, 40%, 49%);
    font-family: 'Open Sans';
}

body {
    width: 100%;
    height: 100vh;
    background: url('../images/bg-desktop.svg') center center no-repeat;
    background-size: cover;
}

.bg-container {
    max-width: 1280px;
    margin: 0 auto;
}

.header .logo {
    width: 215px;
    margin: 5rem auto 8.5rem;
}

.hero{
    width: 100%;
    display: flex;
    gap: 5rem;
}

.hero .img-hero{
    width: 100%;
    height: 100%;
}

.hero .img-hero img{
    width: 100%;
}

.hero .hero-content {
    width: 100%;
    color: #FFF;

}

.hero .hero-content h2 {
    font-size: 4.2rem;
    font-weight: 600;
    margin-top: 5rem;
}

.hero .hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 2.5rem;
    margin: 3rem auto 5rem;
}

.hero .hero-content .btn {
    background-color: #FFF;
    color: hsl(257, 40%, 49%);
    font-size: 2rem;
    padding: 1.5rem 6rem;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.hero .hero-content .btn:hover {
    background-color: #E980E7;
    color: #FFF;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.footer a i{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 1.7rem;
    border: 1px solid #FFF;
    border-radius: 100%;
}

.footer a i:hover{
    color: #E980E7;
    border: 1px solid #E980E7;
    transition: 0.3s ease-in-out;
}