body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif

}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
                                              
}

nav a { /*(styles links inside the <a> bar)*/ 
margin-left: 25px;
text-decoration: none; 
color: black; 
font-weight: 600; 
font-size: 16px; 

} 
/* HERO */ /*(main section of site)*/ 
.hero {
min-height: 550px; 
padding: 90px 70px 0; 
color: white; 
background-color: pink; 
background-size: cover; 
background-position: center right;
background-repeat: no-repeat;
}

/* TEXT */
.hero-content h1 { 
font-size: 55px;
font-weight: 800;
max-width: 520px;
margin-bottom: 20px;
}

.hero-content p { /*(info underneath)*/ 
font-size: 18px;
line-height: 1.0;
max-width: 430px;
margin-bottom: 15px;
}


/* CARDS (boxes underneath)*/
.card {
background: white;  
width: 190px;
min-height: 190px;
border-radius: 100px;
text-align: center;
text-decoration: none; /*(visible links)*/ 
color: #222;
padding: 15px 15px;
box-shadow: 0 30px 20px rgba(0,0,0,0.15);
} 

.cards {
display: flex;
gap: 25px;
margin-top: 50px;
justify-content: flex-start; 
}

.icon {
font-size: 25px;
margin-bottom: 18px;
}

/* FOOTER */
footer {
    background:white
    color: white
    padding: 20px;
    text-align: center; 
    font-size: 15px; 
    padding: 40px 0; 
}

/* About me page */
.contact-page .hero-content {
max-width: 400px;
margin: 0 auto;
text-align: left; 
}

.contact-page p

/* Title */
.contact-page h1 {
font-size: 32px;
margin-bottom: 20px;
}

/* Each field */
.contact-page .field {
display: flex;
flex-direction: column;
margin-bottom: 15px;
text-align: left;
}

/* Labels */
.contact-page label {
margin-bottom: 5px;
font-size: 14px;
}

/* Inputs + textarea */
.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea {
width: 100%;
max-width: 100%;
padding: 10px;
font-size: 16px;
box-sizing: border-box;
}

/* Message box slightly taller */
.contact-page textarea {
min-height: 120px;
}

/* Buttons container */
.contact-page .actions {
list-style: none;
padding: 0;
margin-top: 20px;
text-align: center;
}

/* Buttons side by side */
.contact-page .actions li {
display: inline-block;
margin: 5px;
}

/* Buttons styling */
.contact-page .actions input {
width: auto;
padding: 8px 16px;
font-size: 14px;
cursor: pointer;
}

@media (max-width: 600px) {
body {
margin: 0;
font-size: 16px;
}

nav {
display: flex;
flex-direction: column;
gap: 10px;
text-align: center;
}

.hero {
padding: 30px 20px;
text-align: center;
}

.hero h1 {
font-size: 32px;
}

.hero p {
font-size: 16px;
}

.cards,
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.card,
.box {
width: 100%;
box-sizing: border-box;
}

img {
max-width: 100%;
height: auto;
}
}