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

body {
    font-family: 'Quicksand', sans-serif;
    display: grid;
    grid-template-rows: 1fr;
    height: 100vh;
    color: white;
    transition: background-image 1s ease-in-out;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#time {
    font-size: 8rem;
}

#imgBtn {
    align-self: end;
    justify-self: end;
    margin: 20px;
}

h1 {
    margin-bottom: 3rem;
}

h2 {
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

@media (max-width: 700px) {
    #time {
        font-size: 6rem;
    }
}