@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: white;
}

body {
    height: 100vh;
    width: 100vw;
    background: url('../img/fundo-celular.jpg') no-repeat;
    background-size: cover;
}

.main {
    height: 100%;
    width: 100%;

    background: url('../img/ismael-celular.png') no-repeat;
    background-size: 60vh;
    background-position: left bottom;
}

.content {
    height: 50%;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.bottom_block {
    position: absolute;
    bottom: 1%;
    vertical-align: middle;
    display: flex;
    justify-content: space-between;
}
.bottom_links img {
    max-width: 150px;
    transform: scale(0.9);
    transition: all .5s ease;
}

.bottom_links:hover img {
    transform: scale(1.0);
}

/*Ismael*/
.logo {
    width: 18vh;
}

ul {
    width: 100%;
    font-size: 2vh;
    font-weight: 100;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: disc inside;
}

ul li {
    margin-right: 3%;
}

/*Parceiro*/
.partner {
    font-size: 15pt;

    display: flex;
    align-items: center;
    justify-content: center;
}

.part-logo {
    width: 10vh;
}

/*social media*/
.social {
    width: 60%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10%;
}

.social img {
    width: 6vh;
}



@media (orientation: landscape) {
    body {
        background: url('../img/fundo-pc.jpg') no-repeat;
        background-size: cover;
    }

    .main {
        display: flex;
        background-size: 100vh;
        justify-content: right;
    }

    .content {
        width: 58vw;
        height: 100%;
        justify-content: center;
    }

    .content > * {
        margin: 25px;
    }

    ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 3vh;
    }

    .logo {
        width: 30vh;
    }

    .part-logo {
        width: 17vh;
    }

    .social {
        width: 50%;
    }

    .social img {
        width: 8vh;
    }
    
}