* {
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

h1 {font-size: 3.5em;}
h2 {font-size: 2.7em;}
h3 {font-size: 2em;}
p {font-size: 1.25em;}
ul {list-style: disc;}
li {font-size: 1em;}


.container {
    max-width: 1400px;
    margin: auto;
}

.color-acento{color: rgb(51, 51, 164);}


header {
    background-color: rgb(240, 240, 240);
}

header .logo {
    margin: 0;
    padding: 25px 30px;
    font-weight: bold;
    color: rgb(84, 84, 250);
    font-size: 1.5em;
}

header .logo:hover{
    color: rgb(51, 51, 164);
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
}

header a {
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

header a:hover {
    color: rgb(84, 84, 250);
}

#personal{
    display: flex;
    justify-content: initial;
    background-color: rgb(30, 30, 30);
    color: white;
    text-align: justify;
    padding-left: 20px;
}

#personal h1{
    text-align: center;
    margin-top: 100px;
    font-weight: bold;
}

#personal h2{
    font-weight: bold;
}

#personal p{
    font-weight: bold;
}

#personal ul{
    padding-left: 30px;
}

footer{
    background-color: rgb(230, 230, 230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
}

footer .container{
    height: 90px;
    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-bottom: 0;
        padding-right: 20px;
    }

    #personal{
        display: flex;
    }

    #personal .container{
        justify-items: initial;
        text-justify: initial;
    }



    footer .container{
        justify-content: flex-end;
        height: 80px;
    }


}