.content{
    position: relative;
    width: 100%;
    top: 75px;
    height: fit-content;
}

.nextActivity{
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: blur(4px);
    opacity: 0.8;
}

.nextActivity > *:not(.bg-video) {
    position: relative;
    z-index: 1;
}

.countdown h1{
    font-family: 'SoukouMincho', sans-serif;
    color: #c12a0c;
    font-size: 3rem;
    margin: 0;
}

.cardTitle h2{
    font-family: 'SoukouMincho', sans-serif;
    color: #4A637D;
    font-size: 3rem;
}

.cardTitle p{
    font-family: 'SoukouMincho', sans-serif;
    color: #4A637D;
    font-size: 1rem;
}

.newsContainer, .megaSupporter{
    padding: 0 5vw 0 5vw;
}

.title{
    color: #645038;
    border-left: 5px solid #645038;
    padding-left: 0.5em;
    font-family: 'SoukouMincho', serif;
}

@media (max-width: 740px) {

    .countdown h1, .cardTitle h1{
        font-size: 3rem;
    }

    .cardTitle h2{
        font-size: 2rem;
    }
}

@media (max-width: 600px) {

    .countdown h1, .cardTitle h1{
        font-size: 3rem;
    }
}

@media (max-width: 500px) {

    .countdown h1, .cardTitle h1{
        font-size: 2rem;
    }

    .cardTitle h2{
        font-size: 1rem;
    }
}

@media (max-width: 300px) {

    .countdown h1, .cardTitle h1{
        font-size: 1rem;
    }

    .cardTitle p{
        font-size: 0.5rem;
    }
}

.infoCard{
    width: 100%;
    height: fit-content;
    display: grid;
    justify-content: start;
    gap: 10px;
}

.news-item{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-item div {
    min-width: 70px;
    max-width: 70px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item p {
    margin: 0 10px 0 10px;
    text-align: start !important;
    width: 100%;
    display: block;
}

.important, .information, .activity, .member{
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 5px 10px 5px 10px;;
    min-width: 80px;
    justify-content: center;
    letter-spacing: 1px;
}

.important p, .information p, .activity p, .member p{
    margin: 10px 0 10px 0;
}

.important {
    color: #B05C3B;
    border: 1.5px solid #B05C3B;
    background-color: #F8E4DE;
}

.information {
    color: #4A637D;
    border: 1.5px solid #4A637D;
    background-color: #E9EFF4;
}

.activity {
    color: #A67C52;
    border: 1.5px solid #A67C52;
    background-color: #F3E5D8;
}

.member {
    color: #7C5C36;
    background-color: #F9F6F2;
    border: 1.5px solid #C49A6C;
    font-weight: bold;
}

.mainTitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.mainTitle.visible {
  opacity: 1;
  transform: translateY(0);
}