* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', Arial, sans-serif;
}

body {
    background: radial-gradient(circle at top, #f8f8f8, #e0e0e0);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    min-height: 100svh;
    touch-action: manipulation;
}

.container > div {
    background-color: #fff3e0;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid #ff9800;
    position: relative;
    transition: transform 0.2s;
}

.container > div:hover {
    transform: translateY(-5px);
}

h3 {
    font-size: 2rem;
    color: #ff5722;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 3rem;
    font-weight: bold;
    color: #3e2723;
    margin-bottom: 1.5rem;
}

button {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
    margin: 0.4rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.homeButtons {
    background-color: #ff9800;
    color: #fff;
}

.homeButtons:hover {
    background-color: #fb8c00;
    transform: scale(1.05);
}

.awayButtons {
    background-color: #795548;
    color: #fff;
}

.awayButtons:hover {
    background-color: #6d4c41;
    transform: scale(1.05);
}

@media (min-width: 600px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .container > div {
        flex: 1 1 250px;
    }
}

@media (min-width: 1024px) {
    .container {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .container > div {
        max-width: 350px;
    }

    h3 {
        font-size: 2.2rem;
    }

    p {
        font-size: 3.5rem;
    }

    button {
        font-size: 1.3rem;
        padding: 0.8rem 1.8rem;
    }
}