@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), url('images/newbackgroundimage2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-color: black;
    background-attachment: fixed;
}

.header {
    color: red;
    font-family: 'Bebas Neue';
    font-size: 100px;
    text-shadow: 
        2px 2px 0 #000,  
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
}

.hint {
    position: relative;
    margin-bottom: 30px;;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #444444;
    color: #FFFFFF;
    font-family: 'Bebas Neue';
    border-style: solid;
    border-color: #FFFFFF;
    width: 250px;
    height: 93px;
}

.hint h2 {
    position: absolute;
    top: 5px;
}

.hint-buttons-container {
    position: absolute;
    top: 35px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 250px;
}

.hint-buttons {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border-color: #FFFFFF;
    color: #FFFFFF;
    background-color: #777777;
    font-family: 'Bebas Neue';
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hint-buttons:hover {
    background-color: #999999;
    font-size: 17px;
    cursor: pointer;
}

#display-here {
    position:absolute;
    top: 115px;
    font-size: 25px;
}

.search-and-display-container {
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.search-bar input {
    padding: 5px;
    position: absolute;
    transform: translateX(-50%);
    width: 500px;
    height: 30px;
    border-radius: 5px;
    font-size: 20px;
}

.dropdown {
    display: none;
    position: absolute;
    transform: translateX(-50%);
    top: 45px;
    height: auto;
    max-height: 400px;
    width: 510px;
    z-index: 1;
    overflow: scroll;
    border-style: solid;
    border-top: none;
}

.dropdown::-webkit-scrollbar {
    display: none;
}

.listElement {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    height: 100px;
    border-style: solid;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Bebas Neue';
    font-size: 15px;
}

.listElement:hover {
    background-color: #e9e9e9;
    cursor: pointer;
}

.listElementPhoto {
    position: absolute;
    left: 0;
    height: 100px;
    width: auto;
}

.listElementText {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.info-block {
    margin: 2.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100px;
    width: 100px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    color: #FFFFFF;
    font-family: 'Bebas Neue';
    font-style: bold;
    overflow-x: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.7);

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.info-block-img {
    width: auto;
    height: 100px;
}

.arrow {
    position: absolute;
    opacity: 0.3;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.up {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 4l-8 8h5v8h6v-8h5z"/></svg>');
}

.down {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 20l8-8h-5v-8h-6v8h-5z"/></svg>');
}

.categories {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 1100px;
    top: 50px;
    z-index: 0;
    visibility: hidden;
}

.categories-name {
    margin: 2.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 103px;
    color: #FFFFFF;
    font-family: 'Bebas Neue';
    font-size: 9px;
    text-decoration: underline;


}

.display {
    position: absolute;
    top: 92px;
    z-index: 0;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.display-container {
    animation: fadeInAnimation 1.1s ease-out;
    display: flex;
    align-items: center;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.displayAnswer {
    position: relative;
    margin-top: 5px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 200px;
    height: 120px;
    width: 846px;
    background: linear-gradient(to top, #1e2427, #114727), url();
    color: white;
    border-style: solid;
    border-color: #68ffa5;
    font-family: 'Bebas Neue';
    font-size: 30px;
    animation: fadeInAnimation 1.1s ease-out;
}

.displayAnswer-photo {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 200px;
    height: auto;
}

.displayAnswer-number-of-guesses {
    position: absolute;
    top: 50%;
}

.displayAnswer-next-fighter-in {
    position: absolute;
    top: 73%;
}

/*rsync -avz --exclude 'node_modules' --exclude '.git' --exclude '.env' \
-e "ssh -i /Users/jaisonphongsavane/Desktop/AWS-keypair/texas-jaison-mbp.pem" \
. ubuntu@ec2-3-16-47-46.us-east-2.compute.amazonaws.com:~/app*/