* {
    margin:0; padding: 0; box-sizing: border-box;
} 

/* Phone styling */
/* Body */
body {
    background: linear-gradient( #eef2f3, #88acd0);
    color: black;
    font-family: "Roboto", sans-serif;
    padding: 0 20px;
    line-height: 1.7;
}

/* Header */
header {
    background-color: #052647;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 10px;
}

header span {
    font-weight: 400;
    display: block;
    color: #93c3f0;
}

/* Image */
.images {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.images img {
    flex-flow: row wrap;
    flex: 1 0 40%;
    width: 150px;
    gap: 10px;
    border-radius: 20px;
}

/* Sections */
section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: auto;
    box-shadow: 0 10px 4px rgba(0, 0, 0, .5);
    }

section h2 {
    color: #003366;
    font-weight: 700;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

section p {
    margin: 0px 0px 20px 0px;
}

/* Links */
nav ul {
    text-align: center;

}

nav li {
    display: inline-block;
    margin: 15px;
}

nav a, #hobbyLink{
    color: white;
    background-color: #003366;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
}

nav a:hover, #hobbyLink:hover {
    background-color: white;
    color: #003366;
}

/* Lists */
ul.goals-list, ul.hobby-list{
    list-style-type: square;
    margin-left: 20px;
}

ul.goals-list li, ul.hobby-list li{
    margin: 8px 0;  
}


/* Paragraph */
p {
    margin-bottom: 10px;
}

/* Footer Styling */
footer {
    background-color: #052647;
    color: #cccccc;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
}

@media screen and (min-width:1020px) {
    .images img{
        max-width: 300px;
    }


}