body {
    background-color: rgb(44, 46, 24);
    color: white;
}

a {
    color: white;
}

#hero {
    min-height: 100vh;
    background-image: url("../../assets/ff7_rebirth/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 150%;
    color: white;
}

#hero>h1 {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    padding: 0.6em 0;
}

.hero_btn {
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0.6em 2em;
    border-radius: 15px;
    box-shadow: 5px 5px 5px rgba(212, 191, 72, 0.5);
}

.hero_btn:hover {
    background-color: rgb(0, 0, 0);
    color: white;
    box-shadow: 5px 5px 10px rgba(212, 191, 72, 0.5);
}

video {
    width: 100%;
}

main h2 {
    text-align: center;
    margin-bottom: 1em;
}

#overview,
#details,
#form {
    margin-top: 6em;
}

#overview .row,
#details .row,
#form .row {
    align-items: center;
}

#form {
    background-color: rgb(54, 56, 29);
    padding: 4em;
    border-radius: 15px;
}

#form h3 {
    text-align: center;
    margin-bottom: 1em;
}

form input[type="text"] {
    background-color: rgba(44, 46, 24, 0.50) !important;
    border: 1px solid black;
    font-size: 90% !important;
    color: white !important;
}

fieldset {
    border: 1px solid black;
    padding: 2em;
    border-radius: 15px;
}

#form .btn {
    background-color: rgb(0, 0, 0) !important;
    color: white !important;
}

#form textarea {
    min-height: 20vh;
}


#resources {
    margin-top: 6em;
    overflow: hidden;
    margin-bottom: 3em;
}

#resources h2 {
    text-align: left;
}


table {
    border: 1px solid black !important;
}

th,
td {
    background-color: rgb(44, 46, 24) !important;
    color: white !important;
}

textarea {
    background-color: rgba(44, 46, 24, 0.50) !important;
    border: 1px solid black !important;
    color: white !important;
}

textarea::placeholder {
    color: white !important;
}

#resources a{
    color: white;
}

#resources a:visited{
    color: purple;
}