@font-face {
    font-family: 'Kiwi Soda';
    src: url('fonts/kiwisoda.ttf');
}

/* .logo {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 6px;
    height: 64px;
    contain: layout style;
} */

* {
    background-color: black;
    color: rgb(0, 255, 0);
    font-family: 'Kiwi Soda';
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

/* body {
    display: flex;
    justify-content: center;
    align-items: center;
} */

h1 {
    font-size: 75px;
}

hr {
    height: 5px;
    background-color: rgb(0, 255, 0);
    border: none;
}

.game img {
    border: 5px solid green;
    height: 215px;
    transition-duration: 0.25s;
    transition-property: all;
}

.game :hover {
    height: 220px;
    transition-duration: 0.25s;
    transition-property: all;
}

details {
    font-size: xx-large;
}

iframe {
    width: 50vw;
    height: 50vh;
    border: 5px solid green;
}

button {
    padding: 5px;
    min-width: 30px;
    font-size: large;
    border-color: green;
    cursor: pointer;
}

button a {
    text-decoration: none;
}

.alert-box {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    justify-content: center;
    align-items: center;
}

.alert-content {
    background-color: black;
    padding: 20px;
    width: 25%;
    border: 5px solid green;
    text-align: center;
}

