@font-face {
    font-family: "silkscreen";
    src: url("Assets/fonts/slkscr.ttf");
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f0ed;
    overflow-y: visible;
    overflow-x: hidden;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#Container {
    margin-top: 30px;
    padding: 5px;
    max-width: 55rem;
    margin: 5vw auto 12px auto;
    border: groove;
    border-radius: 15px;
}

#Banner {
    position: relative;
    z-index: 2;
}

.rectangle {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    z-index: 0;
    opacity: 0;
    overflow: hidden;
    animation:
        floatMove linear infinite,
        fadeInOut ease-in-out infinite;
}

@keyframes fadeInOut {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes floatMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(var(--move-x), var(--move-y));
    }
}

.katgif {
    width: 3vh;
    height: auto;
    position: fixed;
    bottom: 1%;
    right: 1%;
}

.Banner {
    height: 25vh;
    background: url(Assets/imgs/mainart.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    border: groove;
    border-radius: 15px;
    border-width: 5px;
    border-color: cadetblue;
}

.Banner .BannerText {
    margin-left: 2%;
    left: 0;
}

.Banner .BannerText .title {
    width: 100%;
    font-size: 1vh;
    top: 0;
    left: 0;
    display: inline-block;
}

.Banner .BannerText .countdown {
    position: absolute;
    font-family: silkscreen;
    font-size: 2vh;
    color: #7aa9d5;
    top: 43%;
}

.Banner .BannerText .misc {
    font-family: "MS PGothic", sans-serif;
    position: absolute;
    font-size: 2vh;
    color: #7aa9d5;
    bottom: 5%;
    right: 1%;
}

.bannerLine {
    border: none;
    height: 3px;
    background-color: cadetblue;
    margin: 5px;
}

#Main .top {
    display: flex;
    gap: 1%;
}

#Main .top .martinezcorner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #eee9e8;
    border: solid cadetblue medium;
    border-radius: 15px;
    width: 20%;
}

#Main .top .martinezcorner .cornertitle {
    text-decoration: underline;
    margin: 0;
    margin-top: 5%;
    font-family: "MS PGothic", sans-serif;
    font-size: 2.6vh;
}

#Main .top .martinezcorner .martinez {
    width: 100%;
    height: auto;
}

#Main .top .desc {
    /*background-color: #eee9e8;*/
    border: solid cadetblue medium;
    border-radius: 15px;
    width: 20%;
    font-family: "MS PGothic", sans-serif;
    margin: 0;
    flex-grow: 1;
    font-size: 2vh;
    line-height: 110%;
    z-index: 2;
}

#Main .top .desc .descheader {
    width: 50%;
    margin-left: 1%;
    border-bottom: groove;
}

#Main .top .desc p {
    margin: 2%;
    margin-top: 0;
    text-align: justify;
}

#Main .top .desc .tab {
    display: inline-block;
    width: 2em; /* adjust as needed */
}