@import url('https://fonts.cdnfonts.com/css/lucida-console');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    background-image: url('img/gif/space.gif');
    background-size: 20em;
    background-position: center center;
    height: 100vh;

    font-family: "VT323", serif;
    font-weight: 400;
    font-style: normal;
}

header {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    image-rendering: pixelated;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;

    height: auto;
    margin: 40px;
}

nav h2 {
    color: gold;
    font-size: 24px;
    text-decoration: none;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-width: 5px;
    border-spacing: 2px;
    border-style: outset;
    border-color: gold;
    border-collapse: separate;
    padding: 15px;
    background: url(img/bg.png);
    width: 700px;
    height: 430px;
}

.container p {
    color : white;
    text-align: center;
}

.yellow-text {
    color: gold;
}

.cubeman {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

section {
    display: flex;
    justify-content: center;
    margin: 30px;
}

.gif88 {
    display: flex;
    justify-content: center;
}

footer {
    color: white;
}

iframe {
    background-image: url(img/bg.png);
}