@font-face {
    font-family: "Open Sans Condensed Bold";
    src: url("/static/fonts/OpenSansCondensedBold/OpenSansCondensedBold.ttf");
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #404040;
}

body {
    font-family: "Open Sans Condensed Bold", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.phrase-container,
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#phrase-text {
    font-size: 2rem;
    color: white;
    text-decoration: none;
}

#phrase-link {
    text-decoration: none;
}

#logo {
    display: block;
    margin-top: 20px;
}

#copyLink {
    color: #444444;
    /* black text */
    text-decoration: none;
    font-size: 20px;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff;
    /* white glow */
    transition: 0.3s;
    padding-top: 20px;
}

#copyLink:hover {
    color: #444444;
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF, 0 0 40px #00FFFF;
    /* cyan glow on hover */
}