* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Verdana;
    background: #dfe2e2;
}

input {
    background: #c9cfcf;
    padding: 10px;
    margin-bottom: 10px;
    border: solid 0px #0a0f0d;
    border-radius: 5px;
}

.header {
    color: #dfe2e2;
    padding: 10px 10px 10px 10px;
    background: black;
    height: fit-content;
}

#header-score {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.titlecard {
    font-size: 1.5em;
    font-weight: bold;
}

.v312_logo {
    width: 5vh;
}

button {
    background: #3cbbb1;
    border: solid 0px #0a0f0d;
    border-radius: 5px;
    padding: 10px;
}

.main {
    height: 85%;
    padding: 5px;
}

.main-top {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#flag-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}

.description {
    border: solid 0px #0a0f0d;
    border-radius: 5px;
    background: #c9cfcf;
    padding: 10px;
    height: 100%;
    max-width: 50%;
    margin-right: 5px;
}

table{
    background: #dfe2e2;
    border-collapse: collapse;
}

th {
    background: #ee4266;
    text-align: left;
}

th, td {
    padding: 5px;
}

.even {
    background: #c9cfcf;
}

@media screen and (max-width: 768px) {
    .main-top {
        flex-direction: column !important;
    }
    .description {
        margin-bottom: 10px;
        max-width: 100%;
    }
    .titlecard {
        font-size: 1em;
    }
    #flag-form {
        width: 100%;
    }
}
