/* CSS Reset: a light modern reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Visually hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Base body styles */
body {
    background-image: url("images/blue-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #000; /* Adjust as needed */
    height: 100vh;
    transition: all 0.3s ease-in-out;
}


.body-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    height: 100vh;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.holding-image {
    width: 100%;
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
    animation-delay: 0.2s;
}

h2 {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 2rem;
    margin-top: 20px;
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
    animation-delay: 1s;
}


@media only screen and (max-width: 1024px) {

    .body-wrapper {
        width: 90%;
    }

}