@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/fennario');

*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.content{
    display: flex;
    width: 100%;
    height: 100vh;
}

.construction {
    margin: auto;
    text-align: center;
}

.construction .alert i{
    display: none;
}

.construction h1 i{
    color: orange;
}

img{
    padding: 30px;
}

.construction h2{
    font-family: fennario;
}

.aling{
    text-align: right;
    padding-top: 3vh;
    padding-bottom: 3vh;
    font-family: fennario;
}

.construction h3{
    font-family: fennario;
}

.construction a{
    text-decoration: none;
    font-family: fennario;
    color: black;
}

.contact_movile{
    display: none;
}

@media (max-width: 600px){
    .construction h1 i{
        display: none;
    }
    
    .construction .alert i{
        display: block;
        color: orange;
        padding-bottom: 2vh;
        font-size: 40px;
    }   

    img{
        width: 60%;
    }

    .construction h3{
        padding-right: 2vh;
    }
    
    .contact{
        display: none;
    }
    
    .contact_movile{
        display: block;
    }
}