* {
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
}

body {
    font-family: 'Sunflower', sans-serif;
    background-color: #171717 !important;
    color: white;
    animation-name: showContent;
    animation-duration: 1s;
}

@keyframes showContent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section {
    margin: 5em auto;
    width: 600px;
    padding: 20px;
    background-color: rgba(44, 44, 44, 0.32);
    border-radius: 1em;
    transition: width 1s;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -o-transition: width 1s;
}

section:hover {
    width: 550px;
}

table,
th,
td {
    border: 2px solid rgb(104, 103, 103);
    border-collapse: collapse;
    padding: 7.5px;
}

table {
    margin: 0 auto;
    table-layout: fixed;
}

td {
    text-align: center;
    width: 50%;
}

hr {
    border: 1px solid rgb(104, 103, 103);
}

h1 {
    text-align: center;
}

footer {
    margin-top: 25px;
    text-align: center;
}

a {
    color: #0570b4;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    section {
        margin: auto;
        width: auto;
    }

    section:hover {
        width: auto;
    }
}