body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.topbar {
    height: 50px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.hero-image {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-caption h1 {
    font-size: 2.5rem;
    font-family: 'Pacifico', cursive;
    color: white;
    animation: fadeInDown 1s ease-in-out;
}

.hero-caption h2 {
    font-size: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease-in-out 1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-body {
    padding: 20px;
}

.game-day-info {
    background-color: #fff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.game-day-info h3,
.game-day-info h5 {
    color: #06264f;
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
}

.game-day-info p {
    color: #06264f;
    text-align: justify;
    white-space: pre-line;
    margin-bottom: 5px;
}

.game-info-bold {
    color: #808080;
    font-weight: bold;
}

.team-item {
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 10px;
}

.team-item img,
.game-day-image {
    width: 100%;
    height: auto;
}

.retro-frame {
    border: 3px solid #ccc;
    background-color: #d3d3d3;
    padding: 5px;
    margin: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.retro-frame:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.card-3d {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px 0;
}

h1 {
    font-size: 22px;
    color: #030328;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

h3 {
    font-size: 16px;
    color: #030328;
    margin-bottom: 5px;
    font-weight: bold;
}

.header-content {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    background: url('topo.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-container .card {
    flex: 1 1 calc(25% - 10px);
    max-width: calc(25% - 10px);
    margin: 5px;
}

.image-container .card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-image {
        height: 200px;
    }

    .hero-caption h1 {
        font-size: 1.8rem;
    }

    .hero-caption h2 {
        font-size: 1.2rem;
    }

    .content-body {
        padding: 15px;
    }

    .image-container .card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .team-item,
    .game-day-info,
    .card-3d {
        margin: 0 auto 15px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 150px;
    }

    .hero-caption h1 {
        font-size: 1.5rem;
    }

    .hero-caption h2 {
        font-size: 1rem;
    }

    .content-body {
        padding: 10px;
    }

    .image-container .card {
        flex: 1 1 calc(100% - 10px);
        max-width: calc(100% - 10px);
    }

    .team-item,
    .game-day-info,
    .card-3d {
        margin: 0 auto 10px;
        width: 100%;
    }
}
