.container 
{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: white;
}

.header 
{
    height: 250px;
    background-color: rgb(8, 165, 118);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.menu 
{
    height: 100px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.content 
{
    flex: 1;
    display: flex;
    border: 2px solid gray;
    background-color: rgb(8, 165, 118);
}

.sidebar 
{
    width: 30%;
    background-color: rgba(14, 22, 58, 0.452);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.main 
{
    width: 70%;
    background-color: rgb(8, 165, 118);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.footer 
{
    height: 70px;
    background-color: rgba(255, 255, 255, 0.452);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    font-size: 16px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 255, 255);;
  padding: 15px 30px;
  border-bottom: 2px solid #007BFF;
}

.nav {
  list-style: none;
  display: flex;
  gap: 150px;
}

.nav li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav li a:hover {
  color: #a5a2a2;
}
