*{
    box-sizing: border-box
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: rgb(184, 135, 135);
}

html{
    scroll-behavior: smooth;
}

h1{ font-size: 5.5em;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;}
h2{ font-size: 2.7em;
color: rgb(8, 64, 132);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;}
h3{ font-size: 1.2em;}
p{ font-size: 1.2em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;}
ul{ list-style: 1.25em;}

.container{
    max-width: 1024;
    margin: auto;
}

.color-acento{ color: rgb(42, 20, 211);

}

.que-es{text-align: center;}

header{
    background-color: rgb(190, 196, 245);
}

header.logos{
    margin: 0;
    padding: 25px 30px;
    font-weight: bolder;
    color: rgb(162, 170, 213);
    font-size: .6em;
}

header.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: rgb(226, 106, 76);
}

header a:hover{
    color: rgb(73, 80, 225);
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    color: white;
    background-image: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1)
    )
    ,url("Bauhaus/Bauhaus\(1\).jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1{
    color: rgb(218, 17, 14);
}

#Significado .container{
    text-align: center;
    padding: 200px 12px;
}


#autores .container{
    text-align: center;
    background-color: rgb(0, 30, 71);
    color: rgb(240, 217, 187);
    padding: 60px 10px;
}

#caracter .container{
    text-align: center;
}

#caracter .li{
    margin: 10px 0px;
    font-weight: bold;
}

footer .container{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 720px) {

    header{
        position: fixed;
        width: 100%;
    }

    header.container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-right: 20px;
    }
    
    #Significado.container{
        display: flex ;

    }

    #caracter .texto{
        width: 90%;
        column-count: 2;
}

}

@media (min-width: 1024px) {
    header{
        position: fixed;
        width: 100%;
    }

    header.container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-right: 20px;
    }
    
    #Significado.container{
        display: flex ;
    }

    #caracter .texto{
            width: 90%;
            column-count: 3;
    }
}