@font-face {
    font-family: "Translator";
    src: url("./assets/Translator.ttf");
}

@font-face {
    font-family: "SpaceMission-rgw9";
    src: url("./assets/SpaceMission-rgyw9.otf");
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #16181D;
    color: #f5f6fa;
}

header {
    display: flex;
    justify-content: center;
    border-bottom: 3px solid #f5f6fa;
}

.main-grid {
    background-color: #f5f6fa;
}

canvas {
    background-color: #16181D;
}

a {
    text-decoration: none;
}

h1 {
    font-family: 'SpaceMission-rgw9';
    font-size: 8vw;
    color: #f5f6fa;
}

#container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

@media (max-width: 899px) {
    h1 {
        font-size: 10vw;
    }
    #container {
        grid-template-columns: repeat(2, 1fr);
    }
    .p5Canvas {
        display: block;
        width: 600px;
    }
}

@media (max-width: 599px) {
    h1 {
        font-size: 14vw;
    }
    #container {
        display: block;
    }
    #ascii-message h2 {
        font-size: 4vw;
    }
}

#container img {
    width: 100%;
    height: 100%;
}

.imageLink {
    width: 100%;
}

.filler {
    background-color: #16181D;
}

#snake-score {
    visibility: hidden;
}

.centered-main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
}

#snake-title {
    font-size: 4em;
}

.mobile h1 {
    font-size: 7em;
}

.tablet h1 {
    font-size: 4em;
}

