@font-face {
    font-family: 'Gilroy';
    src: url('_fonts/Gilroy-Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('_fonts/Gilroy-Bold.otf') format('opentype');
    font-weight: bold;
}

body {
    font-family: 'Gilroy', sans-serif;
    background-color: black;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;

    background-image: url('./_assets/logo.png'); 
    background-position: 35px 35px; 
    background-repeat: no-repeat;
    background-size: auto 40px;
}

.container {
    background-color: #ff6f61;
    border-radius: 20px;
    padding: 30px;
    max-width: 1000px;
    width: 100%;
}

h1 {
    color: black;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-box {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
   /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.game-box:hover {
    transform: scale(1.02);
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.3); */
}

.game-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-box h2 {
    color: black; /* Schriftfarbe auf schwarz geändert */
    margin: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
}
