@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background-color: #0f1421;
    color: #dcd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-family: "Google Sans Code", monospace;
}

.games {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    border-color: #2a87d9;
    border-width: 2px;
    border-style: solid;
    color: #dcd;
    text-decoration: none;
}

.logo {
    width: 10vw;
    
}

.socials {
    display: flex;
    flex-direction: row;
    gap: 5px;
    position: fixed;
    bottom: 20px;
    gap: 20px;
}

.socials svg {
    width: 32px;
    height: 32px;
    fill: #dcd;
}

@media (max-width: 768px) {
    .logo {
        width: 20vw;
        max-width: 100px;
    }

    .games {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 30vw;
        max-width: 80px;
    }

    .games {
        flex-direction: column;
        gap: 12px;
    }
}