* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.flex {
  display: flex;
  flex-direction: row;
}

.justify-between {
  justify-content:space-around;
  align-items:center;
}

.logo {
  background-color: #ffffff;
  padding: 2rem 13rem;
  margin: 4rem 15rem;
  border-radius: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.203);
}
.logo h1{
  font-size: 2.3rem;
}


body {
  font-family: "Open Sans", sans-serif;
}

.menu {
  background-color: rgb(221, 239, 255);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-right: 10vh;
}

.menuItems {
  padding: 1.3rem 2rem;
  background-color: rgb(122, 193, 255);
  color: rgb(0, 59, 110);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.7rem;
}
a {
  text-decoration: none;
}

.menuItems:hover {
  background-color: rgb(255, 255, 255);
  color: black;
}

.content{

  margin-top: 1px;
  float: inline-start;

}

.para {
  word-spacing: 0.3rem;
  font-size: 1rem;
}
.box {
  margin-right:2rem;
  
  margin-left:2rem;
  padding: 2rem;
  box-shadow: 2px 2px 30px 0px rgb(197, 197, 197);
  border-radius: 1.5rem;
  display: flex;
}
.procedureSteps li {
  margin-top: 0px ;
}


.links {
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: rgba(196, 217, 255, 0.459);
  width: fit-content;
  color: darkblue;
  font-weight: 700;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
}

.links:hover {
  transform: scale(1.1);
  box-shadow: 0 0 2rem rgba(190, 190, 190, 0.342);
  transition-duration: 200ms;
  background-color: rgb(255, 184, 53);
  color: rgb(5, 5, 5);
}

.button {
  background-color: rgb(122, 193, 255); /* Green */
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  border-radius: 4px;
}

.button1 {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
}

.button2:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

