@font-face {
    font-family: 'SourceSans';
    src: URL('fonts/SourceSansPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'SourceSans';
    src: URL('fonts/SourceSansPro-Bold.ttf') format('truetype');
    font-weight:bold;
}

@font-face {
    font-family: 'SourceSans';
    src: URL('fonts/SourceSansPro-Black.ttf') format('truetype');
    font-weight: bolder;
}

body {
    height: 100vh;
    color: white;
    font-family: SourceSans;
    margin: 0;
    background-color: #6a03ba;
}

.container {
    background-size: cover;
    background-position: center center;
    background-image: url(../images/bg.png);
    max-width: 450px;
    margin: auto;
    text-align: center;
    /* padding: 1rem 0.5rem; */
    height: 100%;
}

img {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin:0;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 28px;
}

h6 {
    font-size: 20px;
}

.claim-button {
    background-color: #0f0;
    color: black;
    border: 0;
    padding: 7px 30px;
    border-radius: 50rem;
    font-family: inherit;
    font-size: 30px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 1px 1px 20px #f67847;
    line-height: 1;
    animation: zoomInOut 1s ease-in-out infinite;
    animation-delay: 2s;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 1rem;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}