
/*search bar, search button, and name image*/
#searchContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 90vh;
}

#imgdiv {
    display: flex;
    justify-content: center;
}

#name {
    width: 60%;
    min-width: 300px;
    height: auto;
}

#inputdiv {
    padding-top: 15px;
    text-align: center;
}

#input {
    display: inline-block;
    width: 25%;
    min-width: 190px;
    background-image: url("glass2.webp");
    background-size: contain;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 50px;
    padding-left: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Helvetica;
    outline: none;
}

#input:hover {
    border-color: rgb(77, 184, 255);
}

#buttondiv {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

#sbutton {
    border-style: solid;
    border-width: 1px;
    border-color: white;
    width: 7%;
    border-radius: 4px;
    min-width: 90px;
    background-color: rgb(77, 184, 255);
    min-height: 30px;
    max-height: 50px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sbutton:hover {
    background-color: rgb(0, 153, 255);
    cursor: pointer;
}

#sbuttonText {
    color: white;
    padding-top: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

/*menu button*/
#menuButton {
    position: absolute;
    top: 10px;
    left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 40px;
    height: 32px;
}

#menuButton:hover {
    cursor: pointer;
}

.menuBar {
    width: 100%;
    height: 25%;
    background-color: black;
    border-radius: 5px;
}

#topBar {
    /*intentionally blank*/
}

#middleBar {
    height: 24%;
}

#bottomBar {
    /*intentionally blank*/
}

/*fade in menu*/
#menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    position: absolute;
    top: 15px;
    left: 5px;
    border-radius: 10px;
    opacity: 0;
}

.menuItem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    border-radius: 4px;
    min-width: 90px;
    background-color: rgb(77, 184, 255);
    min-height: 30px;
    max-height: 50px;
    height: 22%%;
    margin-top: 5px;
}

.menuItem:hover {
    cursor: pointer;
    background-color: rgb(0, 153, 255);
}

#blankButton {
    height: 30%;
}

#logInButton {
    margin-bottom: 8px;
}

#requestButton {

}

.menuItemText {
    color: white;
    padding-top: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-align: center;
}

/* Grey Screen */
#greyScreen {
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: black;
}