/* VERTICAL SECOND PAGE (ABOUT) */
.vertical_second {
    background-color: white; 
    color: white;
    height: fit-content;
    background-color: rgb(146, 12, 12);
    padding-top: 25px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.vertical_second .about{
    position: relative;
    top: 50%;
    max-width: 75%;
    padding: 15px;
    margin: auto 0;
    width: 100%;
}

.vertical_second .about h1{
    margin: 0;
    color: white;
    padding-bottom: 20px;
    font-size: 24px;
}

.vertical_second .about h1:after
{
    margin-top: 10px;
    content:' ';
    display: block;
    width: 100px;
    border: 1px solid white;
}

.vertical_second .about p{
    font-size: 14px;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

@keyframes floatIn-from-left {
    0% {
        transform: translateX(-30px); /* Starts 30px to the left */
        opacity: 0; /* Fully transparent */
    }
    100% {
        transform: translateX(0); /* Moves to original position */
        opacity: 1; /* Fully visible */
    }
}


.vertical_second .about.animate h1 {
    animation: floatIn-from-left 0.8s forwards;
}

.vertical_second .about.animate h1:after {
    animation: floatIn-from-left 0.5s forwards;
}

.vertical_second .about.animate p {
    animation: floatIn-from-left 0.8s forwards;
}
