@import url('https://fonts.googleapis.com/css2?family=East+Sea+Dokdo&family=Karla:wght@300&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

#nav {
    background-color: black;
    justify-content: space-between;
    display: flex;
    padding: 2rem 8rem;
}

a {
    color: white;
}

#nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

#nav a {
    text-decoration: none;
}

#header {
    display: flex;
    margin: 4rem;
}

#header h1 {
    border: 4px solid black;
    padding: 4rem;
    border-radius: 12px;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#section-one {
    display: flex;
    align-items: center;
    padding: 0 4rem;
    margin-bottom: 4rem;
}

#section-one img {
    width: %;
}

#section-text {
    padding-left: 2rem;
}

#section-one h2 {
    font-size: 5rem;
}

#section-text p {
    line-height: 1.6rem;
    margin-top: 2rem;
}

#section-two-text {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 0 3rem;
}

#section-two-text h2 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#section-two-text button {
    padding: 0 3rem;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

#image-liste-container {
    margin-top: 4rem;
}

.image-list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style: none;
    margin: 2rem 0;
}

.image-list img {
    width: 100%;
}