body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

#main {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}

#main img {
    align-self: center;
}

#background-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
}

#gradient {
    width: 70%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 30%;
    background: rgb(171,105,255);
    background: linear-gradient(73deg, rgba(171,105,255,1) 60%, rgba(0,131,255,1) 75%, rgba(0,253,253,1) 93%, rgba(225,250,254,1) 100%);
}

#content {
    height: 100vh; 
    background-image: url("../images/main-bg.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

#logo img {
    padding: 40px;
}

#logo img { 
    max-width: 100px;
}

#info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#dots {
    max-width: 10%;
}

#text {
    max-width: 80%;
}

#info-pic {
    max-width: 30%;
    padding-top: 40px;
}

#social-btns {
    max-width: 360px;
    margin: 15px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#social-btns a {
    width: 70px;
    height: 70px;
}

#social-btns #whatsapp {
    background-image: url("../images/whatsapp.png");
}

#social-btns #instagram {
    background-image: url("../images/instagram.png");
}

#social-btns #behance {
    background-image: url("../images/behance.png");
}

#social-btns #whatsapp:hover {
    background-image: url("../images/whatsapp-hover.svg");
}

#social-btns #instagram:hover {
    background-image: url("../images/instagram-hover.svg");
}

#social-btns #behance:hover {
    background-image: url("../images/behance-hover.svg");
}

#social-btns a {
    background-repeat: no-repeat;
    background-size: contain;
}

.mobile-dots {
    display: none;
}

@media all and (max-width: 1024px)
{
    #logo .mobile-dots-header {
        max-width: 100px;
        padding: 0;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    #info .mobile-dots-info-pic {
        max-width: 100px;
        display: block;
        position: absolute;
        left: 0;
        bottom: 8%;
    }

    #logo img {
        padding: 40px 40px 0 40px;
    }

    #content {
        background-image: url("../images/main-bg-mobile.png");
        background-position-y: bottom;
    }

    #gradient {
        width: 100%;
        left: 0;
    }

    #info {
        flex-direction: column;
    }

    #info div {
        text-align: center;
    }

    #dots {
        display: none;
    }
    
    #text {
        max-width: 35%;
    }
    
    #info-pic {
        max-width: 35%;
    }

    #social-btns a {
        width: 60px;
        height: 60px;
    }
}


@media all and (max-width: 920px)
{
    #logo img {
        padding: 40px;
    }

    #text {
        max-width: 75%;
    }   

    #info-pic {
        margin-top: 10vh;
        max-width: 55%;
    }
}


@media all and (max-width: 768px)
{
    #logo img {
        padding: 40px;
    }

    #text {
        max-width: 60%;
    }   

    #info-pic {
        max-width: 35%;
    }
}


@media all and (min-width: 426px) and (max-width: 767px)
{
    #text {
        max-width: 90%;
    }   

    #info-pic {
        padding: 0;
        margin-top: 10vh;
        max-width: 75%;
    }
}

@media all and (max-width: 425px)
{
    #text {
        max-width: 100%;
    }   

    #info-pic {
        padding: 0;
        margin-top: 10vh;
        max-width: 75%;
    }
}

@media all and (max-width: 375px)
{
    #info-pic {
        padding: 0;
        margin-top: 10vh;
        max-width: 55%;
    }
}

@media all and (max-width: 320px)
{
    #info-pic {
        padding: 0;
        margin-top: 15vh;
        max-width: 55%;
    }
}