body {
    font-family: 'Roboto', sans-serif;

    height: 100vh;
    background: #1d1d1d;
    /* background: -moz-linear-gradient(top, #D7ECF8 0%, #6CADD6 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #D7ECF8), color-stop(100%, #6CADD6));
    background: -webkit-linear-gradient(top, #D7ECF8 0%, #6CADD6 100%);
    background: -o-linear-gradient(top, #D7ECF8 0%, #6CADD6 100%);
    background: -ms-linear-gradient(top, #D7ECF8 0%, #6CADD6 100%);
    background: linear-gradient(to bottom, #D7ECF8 0%, #6CADD6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4e4ef', endColorstr='#86aecc', GradientType=0); */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}



.copyright {
    color: #b3b3b3;
}

/* a {
    color: rgb(100, 100, 100);
} */

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #000;
    background-image: url("./assets/headerBG.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    flex-direction: column;
    padding: 30px 0 0 0;
}

.logo {
    width: 100%;
    max-width: 500px;
}

.name {
    width: 300px;
}

.content {
    width: 100%;
    padding: 30px 15px;
    flex-grow: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 58.6%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 15px solid #6d9bb6;
    border-radius: 29px;
    box-sizing: border-box;
}

footer {
    background-color: #000;
    background-image: url("./assets/headerBG.png");
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 200px;
    justify-content: center;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.button {
    display: block;
    width: 186px;
    height: 58px;
    background-size: 100%;
    margin: 0 15px;
    background-repeat: no-repeat;
}

.appstore {
    background-image: url("./assets/appstote.png");
}

.gplay {
    background-image: url("./assets/gplay.png");
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

a {
    color: #09496f;
}

.enemy {
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: url("./assets/175.png");
    background-repeat: repeat-y;
    background-position: right;
    left: 0;
    top: 0;
}

.player {
    position: absolute;
    bottom: 0;
    left: 10%;
}

.pick-up {
    position: absolute;
}

.pick-up1 {
    top: -20px;
    left: 40%;
}


.tooth {
    bottom: 0px;
    left: 70%;
}

.privacy-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.privacy-links>a {
    background-color: #ddd;
    border-radius: 4px;
    padding: 15px 10px;
    text-decoration: none;
    margin-bottom: 15px;
    text-align: center;
    background-color: #ffe521;
    color: #000;
    font-weight: bold;
    min-width: 300px;
}

@media only screen and (max-width: 480px) {
    header {
        height: 150px;
    }

    .logo {
        /* width: 70px; */
    }

    .name {
        width: 200px;
    }
}