* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* navbar styling */
#navbar {
  background-color: white;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0px;
  z-index: 1000;
}

#navbar > img {
  position: absolute;
  top: 0;
  left: 100px;
}

#navbar > a {
  font-family: sans-serif;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: bold;
  margin-right: 50px;
}

#navbar > a > img {
  margin-left: 100px;
}

#navbar > a:nth-child(5) {
  margin-right: 400px;
}

#navbar > a > button {
  padding: 15px 30px;
  background-color: #e4002b;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
}

.fa-solid {
  color: black;
  font-size: 35px;
  padding-right: 25px;
  border-right: 1px solid grey;
}

/* div id name location styling starts here */

#location {
  background-color: black;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 100px;
  z-index: 1000;
}

#location > p {
  color: white;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.fa-map-marker-alt {
  color: red;
  margin-right: 10px;
}

#container {
  display: flex;
  justify-self: space-between;
}

#container > div > img {
  width: 55%;
  height: 600px;
  position: absolute;
  top: 140px;
}

#container > div:last-child {
  position: absolute;
  top: 200px;
  left: 800px;
}

#container > div:last-child > h1 {
  width: 50%;
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

#container > div:last-child > p {
  margin-top: 20px;
  width: 50%;
}

#container > div:last-child > h3 {
  margin-top: 15px;
}

#container > div:last-child > h3 > a {
  text-decoration: none;
  color: black;
}

#loginform > input {
  width: 400px;
  padding-left: 10px;
  height: 50px;
  margin-top: 50px;
  border: none;
  border-bottom: 2px solid grey;
}

#loginform > input:active {
  width: 400px;
  padding-left: 10px;
  margin-top: 50px;
  border: none;
  border-bottom: 1px solid grey;
}

input::placeholder {
  color: grey;
  font-size: 18px;
  font-weight: bold;
}

#loginform > input:last-child {
  width: 50%;
  margin-top: 60px;
  margin-left: 50px;
  font-size: 20px;
  background-color: black;
  color: white;
  border-radius: 40px;
}
