h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 40px;
    color: rgb(36, 67, 240);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    background-color: rgb(82, 246, 0);
    display: inline-block;
    padding: 5px 50px;
    border-radius: 25px;
}

body {
    text-align: center;
    font-family: Arial, sans-serif;
}

td {
    font-size: 40px;
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

input {
    font-size: 30px;
}

p {
    font-size: 50px;
    display: inline-block;
    padding: 5px 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    position: relative;
}

.box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    background-color: lightgray;
    border: 2px solid black;
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.arrow {
    font-size: 22px;
    font-weight: bold;
    display: none;
    position: absolute;
    top: -30px;
    color: white;
}

.label {
    font-size: 18px;
    font-weight: bold;
    display: none;
    color: white;
    background-color: black;
    padding: 4px 6px;
    border-radius: 5px;
    position: absolute;
    bottom: -30px;
}

.low {
    background-color: yellow;
}

.high {
    background-color: red;
    color: white;
}

.mid {
    background-color: green;
    color: white;
}

.found {
    background-color: lime;
}

input[type="button"]:hover {
    cursor: pointer;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('binarySearch.png') no-repeat center center/cover;
    background-size: cover;
    z-index: -1;
}

.button {
    border-radius: 25px;
}

.button:hover {
    color: rgb(243, 77, 0);
    background-color: aqua;
}
