body {
    background-color: hsl(257, 40%, 49%);
    background-image: url(../images/bg-desktop.svg);
    background-size: cover;
    min-height: 100vh;
    font-family: OpenSans;
    color: white;
}

.logo {
    padding: 40px;
    width: 13rem;
    margin: 2vh 0 8vh 0;
}

.container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    max-width: 100vw;
}

.description {
    max-width: 38vw;
    display: inline-block;
    font-size: 1.2rem
}

.title {
    font-family: PoppinsMedium;
    font-weight: 600;
    font-size: 2.6rem;
}


.mockup img {
    width: 50vw;
    offset: hidden;
    display: inline-block;
    
}

.btn {
    background-color: white;
    border: none;
    border-radius: 24px;
    width: 30%;
    height: 5vh;
    color: hsl(257, 40%, 49%);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.btn:hover {
    background-color: hsl(300, 69%, 71%);
    color: white;
    
}

.social {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: 20px;
    margin-right: 80px;
}

.social div {
    display: inline-block;
    margin: 5px;
    border: 1px solid #fff;
    border-radius: 100%;
    padding: 5px 10px;
    transition: all 0.5s ease;
}

.social div:hover {
    color: hsl(300, 69%, 71%);
    border: 1px solid hsl(300, 69%, 71%);
}

