body{
    
    margin: 0px;
    /*background-color: rgb(45, 105, 196);*/
    background-image: url("/Website/CCCCImages/CronyCorpStartupScreen.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 25% 73%;
    background-size: cover;

}

#Logo{

    width: 520px;
    margin-left: auto;
    margin-right: auto;
    transform: translate(0px,20px)

}

#Title{

    width: 505px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    border-radius: 10px;
    border: 3px solid;
    padding: 10px;
    background-color: lightgray;
    
}

#Body{

    width: 50%;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    font-size: 20px;
    border-radius: 10px;
    border: 3px solid;
    background: lightgray;
    padding: 50px;

}

#SearchBarLabel {

    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-size: 20px;
    background: lightgray;
    padding: 10px;
    border: 2px solid;
    border-radius: 10px;

}

#search {
    width: 30%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#searchBar {
    width: 100%; 
    padding: 5px;
    border: 1px solid;
    border-radius: 100px;
}

#resultsContainer {
    width: 30%;
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    text-align: left;
    background-color: rgb(185, 185, 185);
    z-index: 100;
    border: 2px solid black;
    border-radius: 10px;
}

#resultsContainer li {
    margin-bottom: 5px;
    margin-left: -30px;
    list-style-type: none;
}

.hidden {
    display: none;
}