@import url("https://fonts.googleapis.com/css2?family=Sixtyfour:wght@100;300;400;500;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  font-family: sixtyfour;
  margin: 0%;
  background-image: url(../../shared/celesteBackground.jpg);
  background-position: 0px 0px;
}

.navbar {
  margin-top: 1%;
  margin-left: 1%;
  margin-right: 1%;
  display: flex;
  height: 10%;
  background-color: rgb(52, 88, 136);
  border-width: 5px;
  border-style: dashed;
  border-color: #edefec;
  color: #ffd7ff;
}

.navbar-left {
  width: 50%;
}

.navbar-left img {
  margin: 1%;
  height: 100px;
}

.navbar-right {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: end;
  gap: 5%;
  margin-right: 5%;
}

button {
  font-family: sixtyfour;
  background-color: #7080bb;
  border: none;
  color: #f990d5;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.dropdownbutton {
  background-color: #7080bb;
  cursor: pointer;
}

.drop-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.drop-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.drop-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .drop-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.main {
  display: flex;
  flex-direction: row;
}
.main-left {
  width: 50%;
}

.main-right {
  width: 80%;
  color: #345888;
  display: flex;
  text-align: center;
  margin-top: 20%;
  justify-content: center;
}

.text-right {
  width: 40%;
}

#home {
  position: fixed;
  bottom: 20px;
  left: 20px;

  img {
    height: 40px;
  }
}
