body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url(background.png);
    color: white;
}

header {
    text-align: center;
    padding: 20px 20px;
    background: #222;
}

h1 {
    font-family: 'playtimes', sans-serif;
    font-size: 400%;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #333;
    padding: 15px;
}

nav a {
    color: white;
    font-weight: bold;
}

.mainbody {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.images-left,
.images-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.images-left img,
.images-right img {
    width: 400px;
    border: 5px solid white;
    border-radius: 10px;
}

.container {
    max-width: 600px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    color: white;
}

.smallVersion {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 70%;
}
