:root {
    --light-blue: #007CBD;
    --dark-blue: #001D4A;
    --off-white: #F9F9F9;
    --sw-green: #04724D;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

p {
    font-size: 1.4rem;
}

a {
    color: var(--light-blue)
}

a:hover {
    color: var(--dark-blue)
}

h1 {
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.8rem;
}

#message-container {
    max-width: 50rem;
    padding: 0 2rem;
}

#logo-container {
    margin-bottom: 1rem;
}

#logo {
    max-width: 26rem;
}

#timer {
    font-size: 3rem;
    color: var(--light-blue)
}

#download-button {
    background-color: var(--light-blue);
    font-size: 1rem;
    color: white;
    font-weight: 400;
    padding: 0.8rem 1.3rem;
    border-radius: 0.3em;
    cursor: pointer;
    border: 1px solid var(--off-white);
    box-shadow: none;
}

#download-button:hover {
    background-color: var(--dark-blue);
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--sw-green);
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.toast.hide {
    opacity: 0;
}

@media screen and (max-width: 480px) {
    #logo {
        max-width: 16rem;
    }
}
