/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    height: 100%;
}

body {
    background-color: #000000;
    color: #9a9a9a;
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    background-image: linear-gradient(to bottom, #e9e9e9, #9a9a9a);
    color: transparent;
    -webkit-background-clip: text;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
}

header {
    text-align: center;
    font-size: large;
    padding: 16.92px 0;
    background-image: url('The-OoS-Site-Banner.png');
    background-repeat: no-repeat;
    background-size: 460px;
    background-position: 200px;
}

.top-navbar {
    display: flex;
    justify-content: center;
    border-style: solid;
    border-width: 1px 0;
    border-color: #9a9a9a;
    outline-style: solid;
    outline-width: 1px;
    outline-color: #9a9a9a;
    outline-offset: 2px;
    background-image: linear-gradient(to bottom, #9a9a9a, #e9e9e9);
}

.top-navbar>a {
    background-image: linear-gradient(to bottom, #9a9a9a, #e9e9e9);
    color: #000000;
    text-decoration: none;
    padding: 4px 10px;
    border-left: solid 1px #9a9a9a; 
}

.top-navbar>a:last-child {
    border-right: solid 1px #9a9a9a;
}

.top-navbar>a:hover {
    text-decoration: none;
    background-image: linear-gradient(to bottom, #454545, #9a9a9a);
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header>h1 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

header>h1>a {
    color: transparent;
}

header>h1>a:hover {
    color: transparent;
    text-decoration: none;
}

header>h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.page-title {
    font-size: 32px;
    margin: 0.67em 0;
    padding-bottom: 4px;
    border-image: linear-gradient(to right, #9a9a9a, transparent) 1;
    border-width: 0 0 1px 0;
    border-style: solid;
}

main {
    margin: 32px auto;
    width: 40%;
    min-height: 100%;
    animation-name: fade-in;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    position: relative;
}

@keyframes fade-in {
    from {
        opacity: 0;
        top: 30px;
    }

    to {
        opacity: 1;
        top: 0;
    }
}

footer {
    padding-bottom: 16px;
    text-align: center;
    clear: both;
}

hr {
    border: none;
    margin: 16px 0;
    color: #9a9a9a;
    background-color: #9a9a9a;
    height: 1px;
}

img {
    display: block;
    max-width: 100%;
}

.image-block-right {
    float: right;
    margin: 0 0 24px 24px;
}

.image-block-left {
    float: left;
    margin: 0 0 24px 24px;
}

.image-block-center {
    margin: 24px auto;
}

@media only screen and (max-width: 600px) {
    body {
        font-size: small;
    }

    main {
        width: 80%;
    }

    .image-block-left,
    .image-block-right {
        float: none;
        margin: 24px auto;
    }
}

@media only screen and (max-width: 1800px) {
    header {
        font-size: small;
        background-size: 200px;
        background-position: center;
    }
}