* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f4f1;
    color: #000;
    font-family: t26-carbon, monospace;
    font-weight: 400;
    font-style: normal;
}

::selection {
  color: #f4f4f1;
  background: black;
}

a {
    text-decoration: none;
    color: #000;
}

p>a {
    border-bottom: 1px solid #000;
}

p>a:hover {
    background-color: #000;
    color: #f4f4f1;
}

.container {
    line-height: 1.5em;
    width: 90%;
    margin-left: 5%;
    text-align: center;
    height: 100vh;
}

.container img {
    width: 65%;
}

button {
    position: relative;
    background-color: #000;
    color: white;
    padding: 7px;
}

button:hover {
    background-color: slategrey;
    cursor: pointer;
}

button:focus {
    outline: none;
}

i {
    margin-left: 5px;
}

.footer {
    position: absolute;
    left: -25px;
    top: -15px;
}

.footer img {
    width: 18%;
    transform: rotate(15deg);
}

table {
    margin: 0 auto;
}

td {
    padding: 10px;
}

/* SCREENS */

@media (max-width: 800px) {
    .container img {
        margin-top: 55px;
        width: 100%;
    }
    
    button {
        font-size: 0.9em;
        margin-top: 20px;
        padding: 10px;
    }
    
    td {
        display: block; 
    }
}