@charset "utf-8";
@import "https://fonts.googleapis.com/css?family=Lato:100";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-family: "Lato", Arial, sans-serif;
    scroll-behavior: smooth;
}

.welcome {
    width: 100%;
    height: 100vh;
    color: #fff;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    position: relative;
    animation: change 10s ease-in-out infinite;
}

.form-content {
    width: 100%;
    height: 100vh;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    padding: 25px;
}

.welcome a {
    color: #fff;
}

h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5rem 10rem;
}

h1,
i:hover {
    cursor: pointer;
}

.card {
    margin-bottom: 220px;
}

.countd {
    width: 120px;
    height: 120px;
    border: 2px solid;
    margin: 0 30;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
}

.countd span {
    display: block;
    font-size: 32px;
    margin-top: 24px;
}

#event-head {
    position: absolute;
    top: 150%;
    color: #fff;
}

@keyframes change {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@media only screen and (min-width:1200px) {

    /* XL */
    body {
        font-size: 14px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {

    /* L */
    body {
        font-size: 13px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {

    /* M */
    body {
        font-size: 12px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {

    /* S */
    body {
        font-size: 12px;
    }
}

@media only screen and (max-width:575px) {

    /* XS */
    body {
        font-size: 12px;
    }
}