*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    background-image: url('img/game_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.container {
    position: absolute;
    top: 50%;
    left: calc((100% - 959px) / 2);
    transform: translateY(-50%);
}

iframe {
    width: 959px;
    height: 468px;
}

.container p {
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #E5E5E5;
    margin-top: 20px;
}

.container a{
    text-decoration: none;
    color: #E5E5E5;
}