:root {
    --white: #ffffff;
    --black: #000000;
    --bright_red: #FF0800;
    --dull_green: #04AA6D;
    --dark_green: #45a049;
    --dark_blue: #101524;
    --light_purple: #a1aace;
    --darker_purple: #6c7ab2;
}
.body {
    background-color: var(--dark_blue);
    padding: 0;
    margin: 0;
}
.nav_bar {
    color: gray;
}
.nav_bar .signin {
    display: none;
    position: absolute;
    right: 3vw;
    top: 1vh;
    font-size: 3vh;
    padding-top: .75vh;
    padding-right: calc(.25vw + 10px);
    padding-bottom: .75vh;
    padding-left: calc(.25vw + 10px);
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50% / 100px 100px 100px 100px;
    transition: background-color .5s ease;
}
.nav_bar .signin:hover {
    background-color: var(--darker_purple);
}
.nav_bar .image {
    display: none;
    position: absolute;
    right: 8.5vw;
    top: 2.2vh;
    width: 3vh;
    pointer-events: none;
    /* z-index: -1; */
}
.bar {
    background-color: var(--light_purple);
    position: absolute;
    z-index: -2;
    width: 100vw;
    height: 8vh;
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
.nav_bar .links {
    color: #fff7d6;
}
.dropbutton {
    position: absolute;
    top: 3vh;
    right: 2vw;
    background-color: black;
    color: white;
    
}
/* button {
    background-color: var(--bright_red);
    border: none;
    color: white;
    padding: 5px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    position: absolute;
    top: 100px;
    left: 70px;
    right: 100px;
    cursor: pointer;
    transition-duration: 0.4s;
}
button:hover {
  background-color: var(--dark_green);
} */
h1 {
    color: white;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -100%);
    font-size: 20vh;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    text-align: center;
}
.paragraphs {
    color: white;
}
.paragraphs p1 {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%);
    font-size: 10vh;
    white-space: nowrap;
}
#cityInput {
    position: absolute;
    top: 150px;
    left: 250px;
}
#username {
    position: absolute;
    top: 180px;
    left: 145px;
}
#password {
    position: absolute;
    top: 210px;
    left: 145px;
}
#login {
    position: absolute;
    top: 240px;
    left: 145px;
    width: 178px;
}
#username2 {
    position: absolute;
    top: 180px;
    left: 350px;
}
#password2 {
    position: absolute;
    top: 210px;
    left: 350px;
}
#login2 {
    position: absolute;
    top: 240px;
    left: 350px;
    width: 178px;
}