@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

:root {
    --primary-blue: #051844;
    --primary-red: #f30f20;
    --primary-white: #f7f7f7;
}

:root {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('https://cdn.prod.website-files.com/65d7b2acc5fea4eded909372/66f7075d2789a58aaabfde03_Shutterstock_360314183.jpg') no-repeat center center fixed;
    background-size: cover;
}

body {
    background: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
}

main {
    position: fixed;
    top: 50px;
    bottom: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main div {
    background: rgba(255, 255, 255, 0.5); /* semi-transparent white */
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 32px;
}

.coming-soon {
    font-size: 2em;
    margin-bottom: 20px;
}

.official-site {
    text-align: center;
    margin-top: 20px;
}

.official-site p {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.official-site button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    border: none;
    border-radius: 5px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: var(--primary-white);
}

.attribution {
    font-size: 0.8em;
    margin-top: 5px;
}

.attribution a {
    color: var(--primary-white);
    text-decoration: underline;
}

.attribution a:hover {
    text-decoration: none;
}   

.attribution a:visited {
    color: #dddddd;
}