body {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    max-width: 1920px;
    background-color: white;
    color: rgb(35, 35, 35);
}

header {
    background-color: white;
}

footer {
    margin-bottom: 50px;
}

.navbar ul {
    list-style-type: none;
    background-color: white;
    padding: 0px;
    margin: 0px;
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover {
    background-color: rgb(204, 204, 204);
}

section {
    width: 900px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 7em;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 50px;
}

h2 {
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
    font-weight: 200;
    margin-top: -20px;
    margin-bottom: 50px;
}

h3 {
    text-align: center;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 400;
    padding-top: 50px;
    padding-bottom: 20px;
}

p {
    text-align: center;
    line-height: 25px;
}

#email {
color: rgb(222, 150, 77);
text-decoration: none;
}

#email:hover {
    color: rgb(35, 35, 35);
}

.aboutfoto {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-top: 30px;
    margin-bottom: 30px;
}



.container{
    --gap: 20px;
    --num-cols: 3;
    --row-height: 190px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);



}

.container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.container2{
    --gap: 20px;
    --num-cols: 3;
    --row-height: 490px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols),1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}

.container2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
