body {
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    background: url('img/landing/bgindex.jpg') no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    #myVideo {
        display: none;
    }

    body {
        background-image: url('img/landing/bgindex.jpg');
        background-size: cover;
    }
}

.retro-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.retro-title {
    font-size: 3em;
    margin-bottom: 20px;
}

#search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

    #search-form input {
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px 0 0 5px;
        width: 260px;
        height: 40px;
        box-sizing: border-box;
        color: #000000;
    }

    #search-form button {
        padding: 10px 20px;
        cursor: pointer;
        border: none;
        background-color: #3398C2;
        color: #ffffff;
        border-radius: 0 5px 5px 0;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #search-form button:hover {
            background-color: #20B2AA;
        }

.btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.typewriter {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

    .typewriter h3, .typewriter h4 {
        white-space: nowrap;
        overflow: hidden;
        margin: 0;
        position: relative;
        width: 100%;
    }

        .typewriter h3::after, .typewriter h4::after {
            content: '';
            position: absolute;
            right: 0;
            border-right: 2px solid;
            animation: caret 0.5s steps(1) infinite;
        }

@keyframes caret {
    50% {
        border-color: transparent;
    }
}
