html {
    height:100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    height:100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #232327;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.header {
    height:20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    height:100%;
}

.links {
    display: flex;
    flex-direction: column;
    height: 60%;
    border-radius: 30px;
}

.link {
    background-color: #197eb2;
    color: white;
    font-size: 30px;
    border-radius: 30px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 20px;
    text-decoration:none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-link {
    max-width: 60px;
    max-height: 60px;
    margin-right: 10px;
}

@media screen and (max-width: 1024px)
{
    .link {
        font-size: 50px;
        padding: 10px 20px 10px 20px;
        margin-bottom: 40px;
        margin-left: 30px;
        margin-right: 30px;
    }

    .logo-link {
        max-width: 100px;
        max-height: 100px;
    }

    label {
        text-align: center;
    }
}

.warning {
    padding: 30px;
    color: white;
    text-align: center;
    font-size: 2.3em;
}
