@font-face {
    font-family: "Quicksand";
    src: url('/Fonts/Quicksand/Quicksand-VariableFont_wght.eot');
    src: url('/Fonts/Quicksand/Quicksand-VariableFont_wght.eot') format('embedded-opentype'),
         url('/Fonts/Quicksand/Quicksand-VariableFont_wght.ttf') format('truetype'),
         url('/Fonts/Quicksand/Quicksand-VariableFont_wght.woff') format('woff');
}

html, body{
    background-color: #35cc7e;
    font-family: "Quicksand";
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

h1{
    font-size: x-large;
    margin: 5px;
}

p{
    font-size: larger;
    margin: 5px;
}

#start-menu, #tutorial-menu {
    display: block;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 60%;
}

#tutorial-menu {
    display: none;
    position: absolute;
    margin: 20px;
}

#tutorial-menu img{
    width:100%
}

.exit-button{
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: unset;
    color: black;
    width: 60px;
    margin: unset;
    font-size: xx-large;
}

button {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fcbd10;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 25px;
}

.background-svg{
    position: absolute;
    overflow: unset;
}

#game-screen{
    background: #35cc7e;
    position: fixed;
    transition: 1s;
    -moz-transition-timing-function: linear;
    border-radius: 50px;
}

#maggg{
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#maggg svg{
    position: absolute;
    top:0;
    left: 0;
    animation: squash 1s alternate ease infinite;
}

.orb{
    z-index: 1;
    height: 25px;
    width: 25px;
    background-color: #f0e8d2;
    border-radius: 50%;
    position: absolute;
    animation: bob 1s alternate ease infinite;
}

.instructionalOverlay{
    position: absolute;
    z-index: 10;
    background: rgba(4, 4, 4, 0.5);
    color: #f0e8d2;
    text-align: center;
    padding: 200%;
    width: 100%;
    font-size: xxx-large;
    vertical-align: middle;
}

@keyframes bob {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes squash {
    0% {
        transform: scaleY(120%);
    }
    100% {
        transform: scaleY(80%);
    }
}