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;
}

/* Stuff meyer didn't write */

html {
    background-color: black;
}

header {
    width: auto;
    width: 100%;
    height: 100%;
    padding: 5px;
    background-color: black;
    border-bottom: white solid;
    position: sticky;
    top: 0px;
}

* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: whitesmoke;
    font-family: "Lexend Deca", sans-serif;
}

footer {
    position: sticky;
    bottom: 0px;
    padding: 10px;
    border-top: solid white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: black;
}

h1 {
    margin: auto;
    text-align: center;
    font-size: 50pt;
}

h2 {
    margin: auto;
    text-align: center;
    font-size: 35pt;
}

p {
    font-size: 15pt;
}

form {
    background-color: rgb(20, 20, 20);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: solid white;
}

iframe,
img:not(#Logo, .SocialMediaIcons, #ImagesMain>*),
video,
button {
    border-radius: 5px;
    border: solid white;
    width: 100%;
    transition: transform 1s;
}

label:not(#Message)::after {
    content: "*";
    color: red;
}

img:not(#Logo, .SocialMediaIcons):hover,
video:hover,
button:hover {
    transform: scale(1.01);
}

input:focus,
textarea:focus {
    transform: scale(1.01);
}

input,
textarea {
    width: 100%;
    resize: none;
    transition: transform 1s;
}

form * {
    border-radius: 2px;
    padding: 5px;
    justify-content: space-evenly;
}

.LinkText {
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
}

.SocialMediaIcons {
    height: 100%;
    border-radius: 3px;
}

#Logo {
    position: absolute;
    height: 50px;
    width: 50px;

}

#Links {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 5%;
}

#SocialMedia {
    background-color: rgb(51, 51, 51);
    padding: 3px;
    border-radius: 3px;
    height: 50px;
}

#HomeContent {
    display: grid;
    gap: 5px;
    padding: 10px;
}

#FactsContent {
    display: flex;
    flex-direction: row;
    gap: 5%;
    padding: 10px;
    flex-wrap: wrap;
}

#IslandMain {
    display: flex;
    gap: 20px;
    padding: 20px;
}

#ImagesMain {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
    padding: 20px;
}

#HomeContent * {
    padding: 2%;
    text-align: center;
}

#FactsContent>* {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#FactsContent div {
    outline: solid white;
}

#FactsContent>* img {
    width: 100%;
}

#ImagesMain>* {
    object-fit: cover;
    height: auto;
    aspect-ratio: 1 / 1;
    transition: transform 1s;
}

@media only screen and (max-width: 640px) {
    .LinkIcon {
        display: block;
    }

    .LinkText {
        display: none;
    }

    #Links {
        justify-content: right;
        margin: 0px;
    }

    #HomeContent {
        grid-template-areas: 'Fact' 'About' 'Donate';
    }

    #FactsContent>* {
        width: 100%;
        grid-template-areas: "header" "fact" "image";
        grid-template-columns: 1fr;
    }

    #ImagesMain>* {
        width: 40%;
    }

    #IslandMain {
        flex-direction: column-reverse;
    }

    #IslandMain * {
        width: 100%;
    }
}

@media only screen and (min-width: 641px) {
    .LinkIcon {
        display: none;
    }

    .LinkText {
        display: block;
    }

    #Links {
        justify-content: center;
        margin: 15px 0px 15px 0px;
    }

    #ImagesMain>* {
        width: 17.5%;
    }

    #HomeContent {
        grid-template-areas:
            "Fact About About"
            "Fact About About"
            "Donate Donate Donate"
        ;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: 3fr 1fr;
    }

    #FactsContent>* {
        width: 45%;
        grid-template-areas: "header header" "image fact";
        grid-template-columns: 1fr 1fr;
    }

    #IslandMain {
        flex-direction: row;
    }
}

@media only screen and (min-width: 641px) and (max-width: 750px) {
    #Logo {
        display: none;
    }
}