@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Leckerli+One&family=Lobster&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Permanent+Marker&family=Salsa&family=Sue+Ellen+Francisco&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Leckerli+One&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Permanent+Marker&family=Salsa&family=Sue+Ellen+Francisco&display=swap');

html{
    background-color: white;
}

body {
    margin: 10px auto;
    width: 900px;
    font-family: "Open sans", sans-serif;
    background-color: #FEFAE0;
    border-radius: 12px;
    border: 2px solid black;
    padding: 10px;
}
header {
    display: grid;
    grid-template-columns: 4fr 1fr;
    background-color: #FEFAE0;
    border-radius: 12px;
    border: 2px solid black;
}

nav {
    grid-column: 1/2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    font-size: 20px;
}

.icon-header {
    grid-column: 1/2;
    width: 100px;
    background-color: #FEFAE0;
    border-radius: 12px;
}

.home {
    grid-column: 2/3;
    color: #F4A261;
    background-color: white;
    width: 95px;
    height: 95px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid black;
    align-self: center;
    align-content: center;
    text-align: center;
}

.page2 {
    grid-column: 3/4;
    color: #F4A261;
    background-color: white;
    width: 95px;
    height: 95px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid black;
    align-self: center;
    align-content: center;
    text-align: center;
}

.page3 {
    grid-column: 4/5;
    color: #F4A261;
    background-color: white;
    width: 95px;
    height: 95px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid black;
    align-self: center;
    align-content: center;
    text-align: center;
}

#hero-img {
    border-radius: 12px;
    width: 100%;
}

section {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin: -5px auto;
    background-color: white;
    border-radius: 12px;
    border: 2px solid black;
    justify-items: center;
}    

section h1 {
    grid-column: 2/5;
    grid-row: 1/2;
    color: #264653;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    text-align: center;
    padding: 0 30px;
}

.photo1 {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
}

.photo2 {
    grid-column: 4/5;
    grid-row: 2/3;
    width: 100%;
}

section p {
    font-size: 25px;
    grid-column: 2/5;
    grid-row: 3/4;
    padding: 20px 5px 40px 5px;
}

.article {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr 1fr;
    margin: -5px auto;
    background-color: white;
    border-radius: 12px;
    border: 2px solid black;
    justify-items: center;
}    

.article h1 {
    grid-column: 2/5;
    color: #264653;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    text-align: center;
    padding: 0 30px;
}


.photo3 {
    grid-column: 2/5;
    width: 100%;
}

.list {
    font-size: 25px;
    grid-column: 2/5;
    padding: 0 5px;
}

