html, body {
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    overflow: hidden;
}

.searchbar {
    position: fixed;
    left: 10vw;
    width: 60vw;
}

#searchShowBar {
    top: 60vh;
}

#searchPersonBar {
    top: 70vh;
}

input[type="text"] {
    font-size:20px;
    font-family: "Courier New", monospace;
    border-radius: 15px;
    width: 30%
}

.title {
    position: fixed;
    left: 10vw;
    top: 40vh;
    font-family: "Courier New", monospace;
    font-size: 80px;
}

.reel {
    position: fixed;
    right: 5vw;
    width: 50vw;
    top: 0;
    bottom: 0;
    border: 2px solid black;
    background-color: black;
    padding: 100px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    
    background-image: 
        url('../reelborder.png'), 
        url('../reelborder.png');
    background-repeat: repeat-y, repeat-y;
    background-position: left center, right center;
    background-size: 100px 100%, 100px 100%;
}

.card {
    margin-bottom: 20px;
    overflow: hidden;
    font-family: "Courier New", monospace;
}

.image {
    flex: 0 0 auto;
    border: 5px solid #0000ee
}

.text {
    flex: 1;
    padding: 15px;
}

@media (max-aspect-ratio: 1/1) {
    .reel {
        position: fixed;
        right: auto;
        left: 5vw;
        width: 90vw;
        top: 35vh;
        bottom: 0;
        height: 65vh;
        background-size: 50px 100%, 50px 100%;
        padding: 50px;
    }

    .title {
        top: 5vw;
        font-size: 60px;
        left: 5vw
    }

    #searchShowBar {
        top: 15vh;
        left: 5vw;
        width: 90vw;
    }
    
    #searchPersonBar {
        top: 25vh;
        left: 5vw;
        width: 90vw;
    }

    input[type="text"] {
        width: 80%;
    }

    .card {
        flex-direction: column;
    }
}