@font-face {
    font-family: 'CodeNewRoman';
    src: url('/static/fonts/CodeNewRoman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #153F40;
    font-family: 'CodeNewRoman', monospace;

    margin: 0;
    display: grid;
    place-items: center;
    height: 100vh;
}

main {
    text-align: center;
}

h1, p {
    color: white;
}

a {
    color: #00d4ff;
}

.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.icon-row img {
    width: 40px;
    height: auto;
    cursor: pointer;
}
