body {
    display: flex;
    flex-direction: column;
    background-color: #040404;
    gap: 50px;
}

#textentry-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
   
}

#app-title {
    position: relative;
    text-align: center;
    font-family: 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 36px;
    color: #fff;
    filter: drop-shadow(-2px 1px #24f6f0) drop-shadow(2px 0px #fe2858);
    margin-bottom: -10px;
}

.video-options {
    display: flex;
    justify-content: center;
    gap: 40px; 
    margin-top: -30px;
}

.video-option{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

.video-option img {
    width: 110px; 
    height: 150px;
    cursor: pointer;
}

.video-option img:hover {
    opacity: 0.7; 
}

.video-option img:last-child {
    margin-right: 0;
}

#upload-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #fff;
    margin-top: -40px;
}

#info-label{
    position: relative;
    text-align: center;
    font-family: 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    color: #fff;
    margin-top: -20px;
    margin-bottom: -40px;
}

#textbox {
    height: 250px;
    background-color: #fff;
    margin-bottom: 5px;
}

#textbox {
    width: 50%;
}

@media only screen and (max-width: 600px) {
    #textbox {
        width: 70%;
    }
}

.button-container {
    display: flex;
    justify-content: center;
}

#submit-button {
    width: flex;
    padding: 10px 20px;
    background-color: #fe2858;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -40px;
}

#submit-button:hover{
    background-color: #f3436c;
    transform: scale(1.01);
}