* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'YoutubeExtraBold';
    src: url(font/YouTubeSansExtrabold.otf);
}

@font-face {
    font-family: 'YoutubeBold';
    src: url(font/YouTubeSansBold.otf);
}

@font-face {
    font-family: 'YoutubeRegular';
    src: url(font/YouTubeSansRegular.otf);
}

#main {
    height: 100vh;
    background: radial-gradient(circle,rgba(67, 67, 122, 1) 0%, rgba(47, 48, 97, 1) 100%);
}

nav {
    background: rgba(52, 52, 52, 0.19);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.31);
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    display: flex;
    font-size: 18px;
    font-family: YoutubeBold;
    color: #DFDFDF;
    justify-content: space-evenly;
    align-items: center;
    z-index: 3;
    text-transform: uppercase;
    a {
        text-decoration: none;
        color: #DFDFDF;
    }

    p {
        transition: 0.5s;
        cursor: pointer;
    }

    i {
        transition: 0.5s;
        cursor: pointer;
    }

    img {
        cursor: pointer;
        transition: 0.5s;

        height: 50px;
    }

    img:hover {
        transform: scale(1.1);
    }
}

.menuitem {
    position: relative;
    padding: 0 5px;
    transition: 0.5s;
}

.menuitem:hover {
    transform: scale(1.1);
}

.menuitem::after {
    content: "";
    position: absolute;
    background-color: #DFDFDF;
    height: 2px;
    width: 0%;
    left: 0;
    bottom: -10px;
    border-radius: 30px;
    transition: 0.5s;
}

.menuitem:hover::after {
    width: 100%;

}



#imglink {
    margin-right: 55%;
}



#content {
    width: 100%;
    height: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: top;
    padding: 10% 5% 0% 0%;
}

#img {
    position: relative;
    left: 0;
    align-items: center;
    background-image: url(imgs/rib1309.png);
    width: 70%;
    background-size: cover;
    background-position: right;
    img {
        width: 100%;
        height: 100%;
        
    }
}

#txt {
    color: #DFDFDF;
    width: 30%;
    text-align: left;

    h1 {
        font-family: YoutubeExtraBold;
        font-size: 40px;
        margin-bottom: 10%;
        line-height: 40px;
    }

    p {
        font-style: italic;
        font-family: YoutubeRegular;
        font-size: 18px;
    }


}

#rodape {
    height: 30vh;
    background-color: #343434;
    display: flex;
    justify-content: center;
    color: #DFDFDF;
    font-family: YoutubeRegular;
    position: relative;
    a {
        text-decoration: none;
        color: #DFDFDF;
    }
    h4 {
        position: absolute;
        bottom: 5%;
        font-size: 14px;
    }
}

#content1 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    p {
        padding-top: 15px;
    }
    img {
        transition: 0.5s;
    }
    img:hover{
        transform: scale(1.4) rotate(360deg);
    }
}
#content2 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    position: relative;
    h3 {
        padding-bottom: 15px;
    }
    
    i {
        cursor: pointer;
        transition: 0.3s;
    }
    i:hover {
        transform: scale(1.2);
    }
}
#content3 {
    width: 30%;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    h3 {
        padding-bottom: 10px;
    }
    
}

.rodape-itens {
    cursor: pointer;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.5s;
}
.rodape-itens::after {
    content: "";
    position: absolute;
    background-color: #DFDFDF;
    height: 2px;
    width: 0%;
    left: 0;
    bottom: 0px;
    border-radius: 30px;
    transition: 0.5s;
}

.rodape-itens:hover::after {
    width: 100%;

}

.rodape-itens:hover {
    transform: scale(1.1);
}

#social-icons {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width:550px) and (max-width:1100px){
    
    #main {
        height: 90vh;
        justify-content: center;
        nav {
            font-size: 13px;

            img {
                height: 40px;
            }
        }
    }

    #content {
        justify-content: center;
        align-items: center;
    }

    #txt {
        text-align: center;
        width: 60%;
        h1 {
            font-family: YoutubeExtraBold;
            font-size: 45px;
            margin-bottom: 10%;
            line-height: 40px;
        }
    
        p {
            font-family: YoutubeRegular;
            font-size: 16px;
            margin-bottom: 5%;
        }
    

    }
    #img {
        display: none;
    }
}


@media (max-width:550px) {
    #imglink {
        margin-right: 0%;
        img {
            height: 30px;
        }
    }

    #content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    nav {
        font-size: 11px
    }


    #img {
        position: relative;
        left: 40%;
        transform: translate(-50%);
    
        img {
            position: relative;
            top: 0;
            left: 50%;
            transform: translate(-50%);
            width: 100%;
            height: 100%;
        }
    }

    #txt {
        color: #DFDFDF;
        width: 80%;
    
        h1 {
            font-family: YoutubeExtraBold;
            font-size: 30px;
            margin-bottom: 5%;
            line-height: 40px;
            text-align: center;
        }
    
        p {
            font-family: YoutubeRegular;
            text-align: center;
            margin-bottom: 5%;
        }
    }
    

    #rodape {
        height: 30vh;
        background-color: #343434;
        display: flex;
        justify-content: center;
        color: #DFDFDF;
        font-family: YoutubeRegular;
        position: relative;
        a {
            text-decoration: none;
            color: #DFDFDF;
        }
        h4 {
            position: absolute;
            bottom: 5%;
            font-size: 14px;
        }
    }
    
    #content1 {
        width: 33%;
        p {
            font-size: 14px;
            text-align: center;
        }
        img {
            height: 40px;
            transition: 0.5s;
        }
        img:hover{
            transform: scale(1.4);
        }
    }
    #content2 {
        width: 33%;
        font-size: 14px;
    }
    #content3 {
        width: 33%;
        font-size: 14px;
    }
    
    #social-icons {
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}


