@font-face {
    font-family: DMSansRegular;
    src: url("DMSans/DMSans-Regular.ttf");
}
@font-face {
    font-family: DMSansRegularItalic;
    src: url("DMSans/DMSans-RegularItalic.ttf");
}
@font-face {
    font-family: DMSansBold;
    src: url("DMSans/DMSans-Bold.ttf");
}
@font-face {
    font-family: DMSansBoldItalic;
    src: url("DMSans/DMSans-BoldItalic.ttf");
}
@font-face {
    font-family: DMSansMedium;
    src: url("DMSans/DMSans-Medium.ttf");
}
@font-face {
    font-family: DMSansMediumItalic;
    src: url("DMSans/DMSans-MediumItalic.ttf");
}
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
body {
    background-color: whitesmoke;
    font-family: DMSansRegular;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}
main {
    padding-top: 80px;
    flex: 1;
}
h1 {
    font-family: DMSansBold;
    text-align: center;
    margin: 0;
}
h2 {
    font-family: DMSansBold;
    text-align: center;
}

ul {
    display: flex;
    list-style-type: none;
    align-items: center;
}
#navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    margin: 0px;
    padding: 0 3rem;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    flex-direction: row;
}
a.navbar {
    width: 70px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: DMSansMedium;
    margin: 0px;
    padding: 10px;
    color: black;
}
a.navbar:hover {
    text-decoration: underline;
}
a {
    display: flex;
    vertical-align: middle;
}
img.navbar {
    vertical-align: middle;
    width: 26px;
    height: 26px;
}
#youtube {
    padding-right: 20px;
    width: 20px;
    height: 20px;
}
#discord {
    width: 18px;
    height: 18px;
}
div#main {
    width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 700px) {
    div#main {
        width: 100%;
    }
}
#mainbutton {
    margin: 1em auto;
    width: 150px;
    height: 40px;
    font-family: DMSansMedium;
    font-size: large;
    border-radius: 20px;
    background-color: color(display-p3 0.12 0.52 0.95);
    color: white;
    display: block;
    cursor: pointer;
    border: none;
    transition-duration: 150ms;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}
#mainbutton:hover {
    filter: brightness(1.2);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#mainbutton:active {
    box-shadow: none;
}
#footer {
    width: 100vw;
    background-color: white;
}
#footerLinks {
    list-style: none;
    margin: 0px;
    padding-top: 10px;
    display: flex;
}
@media screen and (max-width: 400px) {
    #footerLinks {
        flex-direction: column;
    }
    #footerTags {
        flex-direction: column;
    }
}
.footerLink {
    font-size: 16px;
    padding: 1em 2rem;
    color: rgb(50, 50, 50);
    text-decoration: none;
}
.footerLink:hover {
    text-decoration: underline;
}
#footerTags {
    margin: 15px;
    margin-top: 0px;
    display: flex;
}
.footerTag {
    color: gray;
    font-size: smaller;
}
