@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    width: 100%;
    background-color: #121717;
    transition: background-color .2s;
    transition-timing-function: ease-out;
    display: flex;
    flex-flow: column;
}

#themeToggler {
    height: 60px;
    width: 60px;
    transition: opacity .1s;
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 30px;
    z-index: 1;
}

#mainWrapper {
    display: flex;
    text-align: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: white;
    transition: color .2s;
}

h1 {
    font-size: 5.5vw;
    font-weight: 400;
}

h2 {
    margin-bottom: -1.25%;
    font-size: 2.15vw;
    font-weight: 300;
}

a {
    display: inline;
    text-decoration: none;
}

#mainWrapper a {
    margin-top: .4%;
    margin-bottom: 5%;
    font-size: 1.2vw;
    font-weight: 300;
}

.link {
    color: #7dface;
}

#linkWrapper {
    width: 100%;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#subsiteWrapper {
    width: 100%;
}

#subsiteWrapper a {
    display: inline-block;
    width: 10%;
}

#legal {
    text-align: center;
    bottom: 0px;
    font-size: .8vw;
}

#legal p {
    display: inline;
}


@media (max-width:1200px){
    #legal {
        font-size: 1.28vw;
    }

    h1 {
        font-size: 16vw;
    }

    h2 {
        font-size: 6vw;
	margin-bottom: -2%;
    }

    #mainWrapper a {
        font-size: 3vw;
    }

    #subsiteWrapper a {
	width: 290px;
    }
}


@media (max-width: 800px){
    #subsiteWrapper a {
        width: 200px;    
    }
}

