.background-dark {
    background-color: #262626;
}

.body {
    height: 100%;
}

.page-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animated-background {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgb(24, 0, 92) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.h1 {
    font-size: 40px;
    font-family: 'Roboto',sans-serif;
    font-weight: 300;
    color: #FFFFFF;
}

.margin-top {
    margin-top: 10vh;
}

.button {
    padding: 1em 2em;
    border: 0.1em solid #FFFFFF;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto',sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.2s;
}

.button:hover{
    color:#000000;
    background-color:#FFFFFF;
    cursor: pointer;
}

.do-it {
    display: none;
    font-size: 100px;
    font-family: 'Roboto',sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    padding-left: 15%;
    padding-right: 15%;
}

.quote {
    font-family: 'Roboto',sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #FFFFFF;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
}

.quoteAuthor {
    font-family: 'Roboto',sans-serif;
    color: #FFFFFF;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
}

.time {
    font-size: 40px;
    font-family: 'Roboto',sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    display: none;
    text-align: center;
    justify-content: center;
}

.days { 
    display: inline-block;
    width: 10vw;
    padding-left: 20vw;
    padding-right: 5vw;
}
.hours {
    display: inline-block;
    width: 10vw;
    padding-right: 2.5vw;
}
.minutes { 
    display: inline-block;
    width: 10vw;
    padding-left: 2.5vw;
}
.seconds {
    display: inline-block;
    width: 10vw;
    padding-left: 5vw;
    padding-right: 20vw;
}

.texttime {
    font-size: 10px;
    font-family: 'Roboto',sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    text-transform: uppercase;
    display: none;
    text-align: center;
    justify-content: center;
}
.textdays {
    display: inline-block;
    width: 10vw;
    padding-left: 20vw;
    padding-right: 5vw;
}
.texthours {
    display: inline-block;
    width: 10vw;
    padding-right: 2.5vw;
}
.textminutes {
    display: inline-block;
    width: 10vw;
    padding-left: 2.5vw;
}
.textseconds {
    display: inline-block;
    width: 10vw;
    padding-left: 5vw;
    padding-right: 20vw;
}