html {
    overflow: hidden;
}
body {
    grid-template-rows: auto 1fr auto;
}
header {
    position: absolute;
    top: 40%;
    z-index: 1;
    padding: 0 1rem;
}
footer {
    height: 3rem;
}
section {
    height: 100%;
}
p:has(video) {
    margin: 0;
    position: relative;
    height: 90vh;
}
video {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}
table {
    font-size: 1.2rem;
    width: 26%;
    margin: 0 auto;
    position: absolute;
    top: 31%;
    right: 15px;
    background: rgba(255, 255, 255, .5);
}
td {
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    width: 50%;
    font-weight: bold;
    text-shadow: 0px 1px 0px white;
}
td:first-of-type {
    width: 10rem;
}
@media only screen and (max-width: 1630px) {
    header {
        width: 50%;
    }
    h1 span {
        display: block;
        position: initial;
    }
}
@media only screen and (max-width: 1300px) {
    .break {
        display: block;
    }
    #countdownDays {
      padding-left: 0;
    }
    table {
        width: 40%;
    }
}
@media only screen and (max-width: 995px) {
    .break2 {
        display: block;
    }
}
@media only screen and (max-width: 950px) {
    section {
        grid-template-columns: 1fr 2fr;
    }
    p:has(img) {
      text-align: left;
    }
    img {
        width: 80%;
    }
}
@media only screen and (max-width: 770px) {
    header {
        width: 40%;
        top: 35%;
    }
    .break3 {
        display: block;
    }
    table {
        width: 55%;
    }
}
@media only screen and (max-width: 700px) {
    table {
        width: 100%;
        right: 0;
        height: 60%;
    }
    section {
        align-items: unset;
    }
    header {
        top: 0;
        width: 100%;
    }
}
@media only screen and (max-width: 550px) {
    section {
        display: block;
    }
    p:has(img) {
        text-align: center;
    }
}