@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    animation: fadeIn 1s ease-in;
    animation-fill-mode: both;
    position: relative;
}

.light-font {
    font-weight: 300;
    color: #fff;
}

.content {
    position: relative;
    z-index: 1;
}

.centered-text {
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.rounded-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    font-weight: light;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.rounded-button:hover {
    background-color: #000;
}

.center-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.countdown-font {
    color: #fff;
}

a {
    text-decoration: none;
    color: #eee;
}

img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
  }