html {
    height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    padding: 20px;
    margin: 0;
    height: 100%;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    min-width: 320px;
    text-align: center;
}

body::after {
    content: url('chest2.webp');
    position: absolute;
    left: -4000px;
}

#container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    float: left;
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.logo {
    max-width: 220px;
    max-height: 80px;
}

header h3 {
    font-size: 18px;
}

section {
    float: left;
    width: 100%;
}

.text {
    float: left;
    width: 100%;
    text-align: center;
    margin: 10px 0 0;
    display: none;
}

#box {
    position: relative;
    min-width: 216px;
}

#box img {
    width: 240px;
    -webkit-animation: chest 1s infinite;
    animation: chest 1s infinite;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    transform-origin: bottom;
}


@keyframes chest {
    0% {}

    50% {
        transform: scaleY(1.05) scaleX(.97);
    }

    to {
        transform: scaleY(1) scaleX(1);
    }
}

.buttons {
    float: left;
    width: 100%;
    text-align: center;
    margin: 15px 0 60px;
    display: none;
}

.buttons a {
    padding: 14px 30px;
    border-radius: 50rem;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border-bottom: #fff solid 3px;
    background-color: #d12053;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glowing 1500ms infinite;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 20px #2a3378;
    }

    100% {
        box-shadow: 0 0 20px #fff;
    }
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid #FF3D00;
    border-left: 4px solid transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

button.try {
    border: none;
    border-bottom: #000 solid 3px;
    padding: 10px 26px;
    border-radius: 50rem;
    color: #fff;
    background-color: #d12053;
    font-size: 20px;
    margin: 20px 0 80px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}