.title {
    color: green;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    color: white;
    background: linear-gradient(to bottom, #0a75ba, white);
}

.banner {
    background: url(imgs/gif-background-banner.gif) center/cover no-repeat;
    width: 80%;
    height: 200px;
    padding: 10px;
    margin: 20px 10%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
    
    font-family: "Bitcount Grid Double", sans-serif; 
}

.banner h1 {
    margin: 0;
    font-size: 50px;
    color: white;
    text-shadow: 2px 1px 0 black;
}

.banner h2 {
    margin: 5px 0 0;
    color: white;
    text-shadow: 2px 1px 0 black;
}

.content {
    width: 60%;
    background-color: #222;
    padding: 10px;
    text-align: center;
    margin: 50px 20%;
    border-radius: 15px;
    font-family: Roboto;
    text-shadow: 1px 1px 0 black;
}

.content p {
    font-size: 20px;
    margin: 10px 125px
}

.content table {
    width: 40%;
    margin: auto;
    margin-bottom: 20px;
}

.content td {
    width: 20%;
    font-size: 30px;
    padding: 5px 10px;
}

.content a {
    color: white;
}


