* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --padding: 10px;
}
@font-face {
    font-family: 'Inter';
    src: url(Inter_18pt-Regular.woff);
}
/* ### - A - ### */
a {
    color: blue;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* ### - B - ### */
body {
    background-color: #A1A9B3;
    font-family: Inter;
    font-size: 16px;
    color: black;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr max-content;
}
/* ### - C - ### */
/* ### - D - ### */
/* ### - E - ### */
/* ### - F - ### */
footer {
    padding: var(--padding);
    font-size: 12px;
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 20px
}
footer a {
    color: black;
    text-decoration: none;
}footer a:hover {
    text-decoration: underline;
} 
/* ### - G - ### */
/* ### - H - ### */
header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--padding);
    display: flex;
    justify-content: space-between;
}
header a {
    color: black;
}
h1 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 16px;
}
h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 16px;
}
h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 16px;
}
/* ### - I - ### */
img {display: block;}
/* ### - J - ### */
/* ### - K - ### */
.kaufen {
    border: 1px solid black;
    background-color: black;
    color: white;
    padding: var(--padding);
    display: inline-block;
}
.kaufen:hover {
    background-color: #A1A9B3;
    text-decoration: none;
}
/* ### - L - ### */
/* ### - M - ### */
main {
    padding: var(--padding);
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--padding);
}
/* ### - N - ### */
/* ### - O - ### */
/* ### - P - ### */
p {
    margin-bottom: 16px;
}
.projects {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--padding);
    list-style-type: none;
}
.projects li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects img {
    width: 100%;
}
.project-title {
    grid-column: 1/-1;
}
.project-gallery,
.project-text {
    grid-column: span 2;
}
.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.project-gallery img {
    width: 100%;
}
.project-text ul {
    margin-left: 16px;
    margin-bottom: 16px;
}

/* ### - Q - ### */
/* ### - R - ### */
/* ### - S - ### */
/* ### - T - ### */
/* ### - U - ### */
/* ### - V - ### */
/* ### - W - ### */
/* ### - X - ### */
/* ### - Y - ### */
/* ### - Z - ### */

@media (min-width: 750px) {
}

@media (min-width: 1000px) {
    .project-gallery, .project-text {
        grid-column: span 1;
    }
    header {
        font-size: 24px;
    }
}

@media (min-width: 1350px) {
}

@media (min-width: 1650px) {
}

@media (min-width: 2000px) {
}