body {
    margin: 0;
    font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
}

h1, h2, h3, p, a {
    margin: 0px;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 0px;
    gap: 16px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 0px;
    gap: 16px;
}

.section {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.content {
    display: grid;
    justify-items: center;
    align-self: center;
    gap: 16px;
}

.gallery {
    display: grid;
    justify-items: center;
    align-self: center;
    gap: 0;
}

.contact {
    border-top: 1px solid black;
    display: grid;
    gap: 16px;
    padding: 16px 0px;
    justify-items: center;
}

.links {
    display: grid;
    gap: 16px;
    padding: 16px 0px;
    justify-items: center;
}

img {
    border: 1px solid black;
    border-radius: 1.5%;
}

a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

header a {
    background-color: white;
    padding: 16px;
    border: 2px solid black;
    border-radius: 2.5%;
}

header a:hover {
    background-color: rgb(124, 205, 60);
    color: white;
    text-decoration: none;
}