body {
    background-color: black;
    color: white;
    font-family: "Montserrat", sans-serif;
}

/* Headers use Bebas Neue */
h1, h2, h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: white;
}

/* Body text uses Montserrat */
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: white;
}

/* Links stay white */
a {
    font-family: "Montserrat", sans-serif;
    color: white;
} 
.website-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.website-images img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.website-images img:hover {
    opacity: 0.7;
}