* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin: 0px;
    padding: 0px;
}

body {
    color: white;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
    padding: 20px;
    min-height: 100vh;
}

section {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

footer>* {
    font-size: 14px;
}

a {
    color: white;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    /* min-width: 300px; */
    border-collapse: collapse;
}

tr>td:first-child {
    font-weight: 500;
    padding-right: 20px;
}

td,
th {
    padding: 5px;
    min-width: 100px;
}

td {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.slogan {
    font-size: 22px;
    margin-bottom: 20px;
}

#introduction>p {
    font-size: 18px;
    max-width: 500px;
    line-height: 24px;
    margin-bottom: 20px;
}

#img_logo {
    margin-top: 20px;
    max-width: 300px;
}

#img_globe {
    max-width: 100px;
}

#img_flags {
    max-width: 80px;
}