@font-face {
    font-family: 'Switzer Variable';
    src: url('../fonts/SwitzerVariable-Regular.woff2') format('woff2'),
    url('../fonts/SwitzerVariable-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Switzer Variable", serif;
    font-weight: 700;
    background-color: #49c3d0;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

h1 {
    text-transform: uppercase;
}
.countdown {
    display: flex;
    gap: 20px;
}

.time {
    background-color: #020617;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    min-width: 90px;
    overflow: hidden;
    color: #FFF;
}

.time span {
    display: block;
    font-size: 36px;
    font-weight: bold;
}

.time small {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
}
.number {
    height: 40px;
    overflow: hidden;
}

.number span {
    display: block;
    transition: transform 0.4s ease-in-out;
}

.time:nth-of-type(4) {
    display: none;
}
.logo {
    max-width: 80%
}
.contact {
    padding-top: 20px;
}
.contact a {
    color: #000
}