*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100vh;
}
.wrapper {
    background: rgb(2, 0, 36);
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    height: 100%;
    width: 100%;
    padding-top: 100px;
    animation: pulse 10s infinite;
}
@keyframes pulse {
    0% {
        background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    }

    100% {
        background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    }
}
h1, p {
    text-align: center;
}
h1 {
    font-family: 'Sofia Sans Semi Condensed', sans-serif;
    font-size: 62px;
    font-weight: 600;
    color: #ddd;
}
p.first {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
}
p.last {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 24px;
        color: #fff;
}
@media screen and (max-width: 480px) {
    h1 {
        font-size: 48px;
    }
    p{
        font-size: 28px;
    }
}