/* It's just a bit of basic styling. */

* {
    color: black;
    background-color: white;
    font-family: Tahoma, sans-serif;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.standard {
    padding: 10px;
    display: flex;
}

.alert-sign {
    font-size: 128px;
    color: red;
}

.alert-message {
    font-size: 32px;
    font-weight: bold;
    color: red;
}

.link:hover {
    color: grey;
}