/*
CSS RESET
*/

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 100%;
} 

ol,
ul { 
    list-style: none;
}

img,
video { 
    width: 100%;
}

a { 
    color: black;
    text-decoration: none;
}

/*
Web Styles
*/

*{
    font-family:'Courier New', Courier, monospace;
}

body{
    width: 100vw;
}

h1{
    margin-top: 5vh;
}

@font-face {
    font-family: 'daniel';
    src: url('../font/whitrabt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.top-bar {
    width: 105vw;
    height: 5vh;
    background-color: rgb(220, 41, 41);
    text-align: left;
    position: fixed;
    z-index: 10000;
    margin-top: -5vh;
}

.hub-button {
    font-family: 'Courier New', Courier, monospace;
    background-color: transparent;
    border: none;
    padding: 12px 12px;
    font-size: 3vh;
    cursor: pointer;
    border-radius: 3px;
    position: absolute;
    left: 0;
}

a{
    font-family: 'Courier New', Courier, monospace;
    color: pink;
    margin-left: -6px;
    font-weight: 600;
}

.hub-button:hover{
    font-size: 3.5vh;
}

header,
footer {
    text-align: center;
}

h1,
h2,
p {
    color: rgb(238, 3, 3);
}

h1{
    font-weight: bold;
    font-size: 100px;
    h1{
        margin-top: 5vh;
    }
}

h2{
    font-size: 150%;
}

p{
    font-size: medium;
    margin-top: 50px;
}

img{
    filter: sepia(50%);
}

.button-container {
    display:flex;
    margin-left: 60px;
    margin-right: 60px;

}

button{
    border: none;
    background-color: transparent;
    outline: none;
    margin-right: 40px;
}

section{
    margin: 40px 20px 40px 20px;
}

img{
    margin-top: -30px;
}

footer{
    font-size: x-small;
}

body{
    background-color: pink;
}

/*
Phone Styles
*/

@media only screen and (max-width: 600px) {

    h1 {
        font-size: 60px;
        margin-top: 30px;
    }

    h2 {
        font-size: 140%;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    p {
        font-size: medium;
        margin-top: 5px;
    }

    .button-container {
        display: block;
        margin-left: 0vw;
        margin-right: 0vw;
        width: fit-content;
    }

    button {
        display: block;
        margin: 10px auto;
    }

    img {
        margin-top: -35px;
        margin-bottom: 25px;
        margin-left: -7px;
        width: 350px;
        size: 50%
    }

    footer {
        font-size: medium;
        margin-bottom: 10%;
        font-weight: bolder;
        text-align: center;
    }

    .hub-button{
        margin-top: 2px;
    }
}

@media only screen and (min-width: 2000px){

    .button-container {
        margin-left: 200px;
        margin-right: 200px;
    }

    h1 {
        font-size: 10vh;
        margin-top: 60px;
    }

    h2 {
        font-size: 4vh;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    p {
        font-size: 2vh;
        margin-top: 5px;
    }

}
