@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;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/wwdc2020.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -1;
}

.font-color {
    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: #eee;
    color: #000;
    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: #fff;
}

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

.countdown-font {
    color: #fff;
}

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