@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;700&display=swap');

body {
    background-color: black;
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: fit-content;
    cursor: pointer;
    padding-top: 1%;
    padding-left: 1%;
    position: sticky;
}

.holding_message {
    color: white;
    font-family: 'Inter';
    align-items: center;
    font-size: 1vh;
    font-weight: 100;
    font-weight: 200;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 5%;
    padding-bottom: 3%;
}

.construction_message {
    color: white;
    font-family: 'Inter';
    font-size: 1vh;
    text-align: right;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 2%;
    padding-bottom: 1.5%;
}

.title_message {
    color: white;
    font-family: 'Inter';
    text-align: center;
    font-size: 8vh;
    padding-top: 10%;
    word-spacing: -50%;
}
#redirect-button {
    width: 14em;
    height: 6ex;
    background-color: white;
    color: black;
    font-family: 'Inter';
    font-size: 1.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

#redirect-button:hover {
    background-color: black;
    color: white;
    border: #ffffff;
    border-style: solid;
    border-width: 0.3ex;
}