body {
    margin: 0;
    padding: 0;
    background-color: #0d0d24;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    font-family: "Courier New", Courier, monospace;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
#top {
    min-height: fit-content;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    box-sizing: border-box;
    background-color: #5400b455;
    border-bottom: 4px dashed goldenrod;
}
#top h2 {
    font-size: 2rem;
    color: #aaa;
}
#top h1 {
    color: goldenrod;
    margin-bottom: 2rem;
    font-size: 2rem;
}
@media (min-width: 768px) {
    #top h1 {
        font-size: 6rem;
    }
}
#top a {
    color: #fff;
}
#buttons {
    display: flex;
    gap: 1rem;
}
.section-feature {
    color: #fff;
    width: 100%;
    height: fit-content;
    padding: 4rem;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.images-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.images-row * {
    flex: 1;
    width: 10vw;
}
.italic {
    font-style: italic;
}
.section-feature > img {
    max-width: 100%;
}
