#title-wrapper {
    height: 100vh;
    width: 100%;
    /* Enable flex */
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Flex settings */
    align-items: center;
    justify-content: center;
}
#title {
    color: #2c2c54;
    font-size: 76px;
    font-weight: 700;

    font-family: Arial, sans-serif;
}
#subtitle {
    color: #4d4d80;
    font-size: 26px;
}
#down-arrow {
    font-family: monospace;
    font-weight: 700;
    font-size: 50px;
    rotate: 90deg;
    color: #2c2c54;

    text-decoration: none;
    user-select: none;
    
    /* Double Arrow */
    letter-spacing: -10px;
    /* Animation */
    animation: bounce 5s infinite;
    transition: 1.5s;
}
#down-arrow:hover {
    color: rgb(0, 225, 255);
    text-shadow: 5px 0px 0px black;
}
@keyframes bounce {
    100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(30px);
    }
    60% {
        transform: translateX(15px);
    }
}