body{
    height: 100vh;
    background-color: #DAAD60;
}

a {
    text-decoration: none;
    color:  #7B452A;
}

.header {
  position: sticky;
  top: 0;
  padding: 10px;
  z-index: 10;
  background-color: #E6DBC9;
  color:  #7B452A;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  width: 100%;
  position: absolute;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo2 {
  font-weight: 300;
}

#logoimg {
  width: 60px;
  height: 60px;
}

.mid{
    height: 100vh;
    width: 100vw; 
    display: flex;
    align-items: center;
    justify-content: center;
}


.middle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #E6DBC9;
    border: 5px solid #7B452A;
    border-radius: 15px;
    text-align: center;
    gap: 10px;
}

.button-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.m1, .m2 {
    background-color: #7B452A;
    color: #E6DBC9;
    padding: 30px 20px;
}

.m1:hover, .m2:hover{
    background-color: #DAAD60;
}