html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------ CSS Resetn't ------------ */


html {
    background-color: black;
}

header {
    position: sticky;
    top: 0px;
    background-color: black;
    width: auto;
    height: 60px;
    padding: 0px 10px;
    border-bottom: solid white;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

footer {
    position: sticky;
    bottom: 0px;
    background-color: black;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: solid white;
}

main {
    background-image: url('../Media/Banner.jpg');
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    color: whitesmoke;
    text-align: center;
}

h1 {
    font-size: 70pt;
}

h2 {
    font-size: 30pt;
    font-family: 'Raleway', sans-serif;
}

h3 {
    font-size: 30pt;
    font-family: "averia sans libre";
}

p {
    color: rgb(127, 174, 255);
    font-family: "averia sans libre";
    font-size: 28px;
}

img {
    border-radius: 5px;
    transition: 1s;
    max-width: 100vw;
}

label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


label,
input,
textarea,
button {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}

input[type="text"],
input[type="email"],
textarea {
    border-radius: 4px;
    font-size: 14px;
    background-color: transparent;
    color: white;
}

button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 50%;
    margin: auto;
}


img:not(#icon):hover,
#Links a:hover {
    scale: 1.025;
}

/* Selects a label element that is immediately followed by a required input */
label:has(+ input:required)::after,
label:has(+ select:required)::after,
label:has(+ textarea:required)::after {
    content: "*";
    color: red;
}

#ContactsHolder {
    display: flex;
    justify-content: space-evenly;
}

#icon {
    height: 80%;
    width: auto;
    text-align: center;
    display: inline;
    float: left;
    transform: translate(0px, 10%);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

#SocialMedia {
    display: inline;
    width: auto;
    height: 50px;
    background-color: rgb(30, 30, 30);
    display: flex;
    box-sizing: border-box;
    justify-content: space-evenly;
    padding: 5px;
    border-radius: 5px;
}

#SocialMedia a img {
    height: 100%;
    width: auto;
}

#Links a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

#ContactsHolder div img {
    overflow: hidden;
    max-height: 260px;
    box-sizing: border-box;
}

#Info h6 {
    text-align: left;
}

.People *,
.PeopleOther * {
    object-fit: contain;
}

#Title {
    font-family: 'Mr Dafoe', cursive;
}

#Info {
    float: left;
}

#banner {
    width: 100%;
    height: auto;
}

.People img,
.PeopleOther img {
    border-radius: 0px;
    max-width: 40%;
    margin: auto;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.image {
    height: 200px;
    width: auto;
    object-fit: contain;
}

iframe {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 1024px) {

    #Links {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        height: 100%;
        padding: 5px;
        border-radius: 5px;
        width: 100%;
    }

    .Title_Extras {
        display: block;
    }

    #Hamburger {
        display: none;
    }

    #banner {
        display: none;
    }

    #Content {
        background-color: black;
        margin: auto;
        max-width: 50%;
        padding: 5%;
        text-align: center;
    }

    main {
        padding: 10% 0% 0% 0%;
    }

    #Info h6 {
        font-size: 16px;
    }

    .People {
        display: flex;
        flex-direction: row;
    }

    .PeopleOther {
        display: flex;
        flex-direction: row-reverse;
    }

    #ContactsHolder {
        flex-direction: row;
        gap: 0px;
    }

}

@media only screen and (max-width: 410px) {

    #Links {
        position: absolute;
        width: auto;
        right: 0px;
        top: 60px;
        display: none;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: black;
        row-gap: 5px;
        padding: 5px;
        border-radius: 0px 0px 0px 5px;
        border: solid white;
    }

    .Title_Extras {
        display: none;
    }

    #Hamburger {
        display: block;
    }

    #banner {
        display: block;
    }

    #Content {
        background-color: black;
        margin: 0px;
        max-width: 100%;
        padding: 5%;
        text-align: center;
    }

    main {
        padding: 0% 0% 0% 0%;
    }

    #Info h6 {
        font-size: 12.5px;
    }

    .People,
    .PeopleOther {
        display: flex;
        flex-direction: column;
    }

    #ContactsHolder {
        flex-direction: column;
        gap: 50px;
    }

}