@font-face {
    font-family: "Primary";
    src: url("../fonts/lucida_console.ttf") format("truetype");
}

@font-face {
    font-family: "Secondary";
    src: url("../fonts/ocra_extended.ttf") format("truetype");
}

@keyframes fadeIn {
    from {
        opacity: 0;
        margin-top: 50px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}

head {
    background-color: #332C2F;
    color: white;
    font-family: "Secondary";
}

body {
    background-image: linear-gradient(#2A2327, #22191C);
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: "Primary";
}

#content {
    animation: fadeIn 1s;
}

h1 {
    font-size: 72px;
    transition: font-size 0.3s;
}

h2 {
    font-size: 48px;
    transition: font-size 0.3s;
}

h3 {
    font-size: 36px;
    transition: font-size 0.3s;
}

h4 {
    font-size: 28px;
    transition: font-size 0.3s;
}

h5 {
    font-size: 24px;
    transition: font-size 0.3s;
}

h6 {
    font-size: 20px;
    transition: font-size 0.3s;
}

p {
    font-size: 16px;
    transition: font-size 0.3s;
}

a {
    color: white;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button {
    background-color: #A52A2A;
    color: white;
    font-family: "Secondary";
    border: solid transparent 1px;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #DA7289;
}

h1 button {
    font-size: 72px;
    transition: font-size 0.3s;
}

h2 button {
    font-size: 48px;
    transition: font-size 0.3s;
}

h3 button {
    font-size: 36px;
    transition: font-size 0.3s;
}

h4 button {
    font-size: 28px;
    transition: font-size 0.3s;
}

h5 button {
    font-size: 24px;
    transition: font-size 0.3s;
}

h6 button {
    font-size: 20px;
    transition: font-size 0.3s;
}

p button {
    font-size: 16px;
    transition: font-size 0.3s;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    border: solid black 2px;
}

td {
    border: solid black 2px;
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 16px;
    }
    p {
        font-size: 12px;
    }
    h1 button {
        font-size: 48px;
    }
    h2 button {
        font-size: 36px;
    }
    h3 button {
        font-size: 28px;
    }
    h4 button {
        font-size: 24px;
    }
    h5 button {
        font-size: 20px;
    }
    h6 button {
        font-size: 16px;
    }
    p button {
        font-size: 12px;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 12px;
    }
    p {
        font-size: 11px;
    }
    h1 button {
        font-size: 36px;
    }
    h2 button {
        font-size: 28px;
    }
    h3 button {
        font-size: 24px;
    }
    h4 button {
        font-size: 20px;
    }
    h5 button {
        font-size: 16px;
    }
    h6 button {
        font-size: 12px;
    }
    p button {
        font-size: 11px;
    }
}

@media screen and (max-width: 250px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 12px;
    }
    h6 {
        font-size: 11px;
    }
    p {
        font-size: 10px;
    }
    h1 button {
        font-size: 28px;
    }
    h2 button {
        font-size: 24px;
    }
    h3 button {
        font-size: 20px;
    }
    h4 button {
        font-size: 16px;
    }
    h5 button {
        font-size: 12px;
    }
    h6 button {
        font-size: 11px;
    }
    p button {
        font-size: 10px;
    }
}
