*{
    padding: 0;
    margin: 0;
    font-family: "Roboto","Georgia", 'Times New Roman', "Times", "serif";
    box-sizing: border-box;
}

body{
    background-color: #3b3e47;
}

header {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    z-index: 1;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.navlinks {
    z-index: 4;
}

nav li {
    display: inline-block;
    list-style-type: none;
    padding: 0 20px;
}

a, button {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

button {
    background: rgba(0,0,0,0.2);
    border: 2px solid #ed7427;
    border-radius: 50px;
    padding: 9px 25px;
}

nav li a:hover {
    color: #ed7427;
    transition: all 0.4s ease 0s;
}

button:hover {
    background-color: #ed7427;
    transition: all 0.4s ease 0s;
}

@media (max-width: 1450px) {
    a, button {
        font-size: 17px;
    }
    nav li {
        padding: 0 17px;
    }
}

@media (max-width: 1260px) {
    a, button {
        font-size: 15px;
    }
    nav li {
        padding: 0 15px;
    }
}

@media (max-width: 1132px) {
    a, button {
        font-size: 15px;
    }
    nav li {
        padding: 0 10px;
    }
}

@media (max-width: 1050px) {
    a, button {
        font-size: 20px;
    }
    nav li {
        padding: 0 20px;
    }
}

@media (max-width: 965px) {
    a, button {
        font-size: 15px;
    }
    nav li {
        padding: 0 15px;
    }
}

@media (max-width: 770px) {
    a, button {
        font-size: 15px;
    }
    nav li {
        padding: 0 10px;
    }
}

main {
    max-width: 75%;
    margin-top:125px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

h1 {
    text-align: center;
    color: #444;
    font-family: 'Bebas Neue',"Georgia", 'Times New Roman', "Times", "serif";
    font-size: 3em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

thead {
    background-color: #333;
    color: #fff;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-family: "Roboto","Georgia", 'Times New Roman', "Times", "serif";
    font-size:1.2em;
}

tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

tbody tr:nth-child(odd) {
    background-color: #fff;
}

td:first-child {
    font-weight: bold;
}

td:last-child {
    text-align: right;
}

.note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #555;
}

footer {
    margin-top: 70px;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.footer-block {
    width: 45%;
}

.footer-block h2 {
    margin-bottom: 20px;
    font-family: 'Bebas Neue',"Georgia", 'Times New Roman', "Times", "serif";
    font-size: 2em;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin: 10px 0;
}

.footer-block ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-block ul li a:hover {
    color:#ed7427;
    transition: all 0.4s ease 0s;
}

.footer-block p {
    margin: 10px 0;
}

.footer-block p a {
    color: #fff;
    text-decoration: none;
}

.footer-block p a:hover {
    color:#ed7427;
    transition: all 0.4s ease 0s;
}