@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #fff;
    background-image: url(bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #222;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 0;
}

h2 {
    font-size: 24px;
    text-align: center;
    margin-top: 0;
    font-weight: lighter;
    margin-bottom: 40px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

section {
    max-width: 720px;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
}

section > div {
    margin: 0 auto;
    padding: 16px;
}

span.policies {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.policy {
    display: inline-block;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}

p {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
}

.smartplayer-call-action--link {
    border-radius: 50px !important;
    text-transform: uppercase !important;
    animation: pulse 1s infinite !important;
    font-size: 18px;
}

.btn {
    display: block;
    width: 85%;
    margin: 0 auto;
    padding: 20px 10px;
    color: #fff;
    background-color: blue;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    animation: pulse 1s infinite !important;
    box-shadow: 0px 5px 10px #00000035;
}

.btn:hover, .btn:active {
    opacity: 70%;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
    100% {
      transform: scale(1);
    }
}