/* COPY HERE */

#navbar {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 50px;
    max-width:100%;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #242029;
}

#logoEl {
    width: 50px;
    height: 50px;
    background-color: skyblue;
    background-image: url(public/logo.png);
    background-size: cover;
}

.navBarBtns{
    width: 75px;
    height: 50px;
    background-color: #242029;
    border: 0px;
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.navBarBtns:hover {
    background-color: #161617;
}

.selectedNavbar {
    background-color: #161617;
}

#mainNavBarBtns {
    display: flex;
    margin: 0;
    width: fit-content;
}

/* to here */

* {
    /*margin: 0;*/

    font-family: sans-serif;
    color: white;
}

body{
    background-color: #332c3d;
    margin: 0px;
}


#mainContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100vh - 70px);
    width: 100vw;
}

#mainBackground{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #242029;
    width: 300px;
    height: 400px;
    border-radius: 10px;
}

.standardBtn{
    background-color: #332c3d;
    border: 0;
    border-radius: 10px;
    height: 30px;
    width: 150px;
    font-size: 16px;
    font-weight: 520;
    margin: 5px 0px;
}

.standardBtn:hover {
    background-color: #242029;

}

.standardInput {
    background-color: #332c3d;
    border: none;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 10px 0px;
    border-radius: 10px;
}

.standardInput::placeholder {
    color: white;
}

#googleLogo {
    width: 20px;
    height: 20px;

}

.hidden {
    display: none;
}