* {
    box-sizing: border-box;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

html, body {
    overflow: hidden;  /* Disables scrolling */
    height: 100%;      /* Ensures the rule applies properly */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    height: 100vh;
    padding-top: 10vh;
}

#c2 {
    max-height: 50vh;
}

#rick {
    max-height: 100vh;
    position: absolute;
    top: 100%;
}

.getRick {
    transform: translate(0%, -100%);
    transition: transform 2s ease;
        transition-delay: 1s;
}

#message {
    position: relative;
    top: 80%;
}


/* Goal: Top = -15% */
.getMessage {
    transform: translate(0%, -2600%);
    transition: transform 2s ease;
    transition-delay: 3s;
}

#playButton {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

#playButton:hover {
    background-color: #45a049;
    transition: all 0.3s ease;
}

.spin-and-move {
    transform: rotate(720deg) translateX(200vw);
    opacity: 0;
    transition: all 2s ease;
}