body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-family: 'Lobster', cursive;
    font-size: 7em;
    color: #3FB8AF;
    margin: 0 0px 10px 0;
    text-shadow: 1px 1px 2px #174642;
}
h2 {
    color: #7FC7AF;
    text-shadow: 1px 1px 0px #549691;
    padding: 0 10px 10px 10px;
    font-size: 1.8em;
}
.shot {
    animation-name: jump;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    display: inline-block;
}
@keyframes jump {
    0% {transform: translateY(0);}
    50% {transform: translateY(0);}
    70% {transform: translateY(-10px); color: #F38630; text-shadow: 1px 1px 0px #d4742a;}
    90% {transform: translateY(0);}
    92% {transform: translateY(-1px);}
    94% {transform: translateY(-2px);}
    94% {transform: translateY(-1px);}
    100% {transform: translateY(0);color: #7FC7AF; text-shadow: 1px 1px 0px #549691;}
}
a {
    color: #FA6900;
    text-decoration: none;
}

.wrapper {
    height: 100vh;
}


.main-wrap {
    background-color: #E0E4CC;
    opacity: 0.8;
    background-size: 10px 10px;
    background-image: repeating-linear-gradient(45deg, #e6e6e6 0, #e6e6e6 1px, #E0E4CC 0, #E0E4CC 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.main-wrap .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-wrap {
    background-color: #343838;
    height: 5vh;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 0px 2px #00000045;
}
@media screen and (max-width: 980px) {
    .footer-wrap {
        height: 8vh;
    }
}

.footer-wrap .footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0 10px;
}
@media screen and (max-width: 500px) {
    .main-wrap {
        justify-content: flex-start;
        padding-top: 10%;
    }
    .footer-wrap {
        height: 150px;
    }
    .footer-wrap .footer {
        flex-direction: column;
    }
    .footer-wrap .footer .seperator{
        display: none;
    }
    h1 {
        font-size: 6em;
    }
}
.footer-wrap .footer p {
    color: white;
    font-size: 0.9em;
}

.footer-wrap .footer img {
    height: 35px;
}
.footer-wrap .footer .seperator{
    border-right: 1px dashed white;
    height: 1em;
    margin: 0 10px 0 10px;
}


button{
    display:inline-block;
    padding:0.5em 0.5em;
    border:0.1em solid #F38630;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-size: 3em;
    color:#373B44;
    background-color: #F38630;
    text-align:center;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
}
button:hover{
    color:#ffffff;
    background-color:#FA6900;
    border:0.1em solid #FA6900;
}
button:active{
    transform: translateY(4px);
}
@media all and (max-width:30em){
    button{
        display:block;
        margin:0.4em auto;
    }
}
