* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #F9F7F7;
}

header {
    min-height: 200px;
    background-color: #3F72AF;
    margin: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 16pt;
    letter-spacing: 6pt;
    text-align: center;
    border-radius: 6px;
    box-shadow: 6px 6px 6px #112D4E;

}

header h1, h2 {
    color: #F9F7F7;
    padding: 10px;
}

header h1 {
    border-bottom: 8px solid #112D4E;
}

header h2 {
    letter-spacing: 2pt;
}

nav {
    min-height: auto;
    background-color: #DBE2EF;
    margin: 20px 20px;
    border: 2px solid #3F72AF;
    border-radius: 6px;
    box-shadow: 6px 6px 6px #112D4E;

}

nav p {
    padding: 10px;
    color: #112D4E;
    font-size: 14pt;
}

nav h3 {
    text-align: center;
    padding: 10px;
    font-size: 24pt;
    color: #112D4E;
    border-bottom: 2px solid #112D4E;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2pt;
}

nav ul {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 5px;
}

nav li {
    list-style: none;
    padding: 10px;

}

nav li a {
    padding: 5px;
    text-decoration: none;
    color: #F9F7F7;
    font-size: 16pt;
    background-color: #3F72AF;
    align-items: center;
    display: block;
    border-radius: 6px;
    

}

.about_me {
    min-height: auto;
    background-color: #DBE2EF;
    margin: 20px 20px;
    display: grid;
    border: 2px solid #3F72AF;
    border-radius: 6px;
    box-shadow: 6px 6px 6px #112D4E;
}

.about_me figure img {
    max-width: 250px;
    margin: 0 20px;
    border-radius: 6px;
    margin: 20px auto;
    display: block;
}

.about_me section {
    margin: 20px;

}

.about_me section h3 {
    color: #112D4E;
    font-size: 30pt;
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
}

.about_me section p {
    margin-top: 10px;
    font-size: 16pt;
    color: #112D4E;
}




.goals_hobbies {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    gap: 20px;
    text-align: center;
    margin: 20px;
}

.goals_hobbies div {
    border: 2px solid #3F72AF;
    background-color: #DBE2EF;
    border-radius: 6px;
    box-shadow: 6px 6px 6px #112D4E;
}

.goals_hobbies h2 {
    color: #112D4E;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24pt;
    
}

.goals_hobbies li {
    list-style: none;
    text-align: center;
    margin: 0px 20px 5px 10px;
    font-size: 18pt;
}

footer {
    background-color: #DBE2EF;
    padding: 20px;
    color: #112D4E;
    border: 2px solid #3F72AF;
    margin: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 6px 6px 6px #112D4E;

}





@media screen and (min-width: 1020px) {  /*=====================DESKTOP===================*/

    header {
        font-size: 28pt;
        text-align: left;
        padding: 20px;
    }

    nav h3 {
        font-size: 32pt;
    }

    nav ul {
        grid-template-columns: 1fr 1fr;
    }

    nav li a {
        font-size: 22pt;
        
    }

    nav p {
        text-align: center;
        font-size: 18pt;
    }

    .about_me figure img {
        max-width: 250px;
        float: left;
        margin: 0 20px;
        border-radius: 6px;
        margin: 20px;
    }

    .about_me section h3 {
        color: #112D4E;
        font-size: 48pt;
        font-family: "Bebas Neue", sans-serif;
        text-align: left;
    }

    .about_me section p {
        font-size: 20pt;
    }

    footer {
        font-size: 16pt;
    }

    .goals_hobbies h2 {
        font-size: 30pt;

    }

    .goals_hobbies li {
        font-size: 20pt;
    }

    .goals_hobbies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-evenly;
    gap: 20px;
    text-align: center;
    margin: 20px;
}







}