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

body {
  background-color: rgb(250, 235, 239);
  transition: 0.4s;
}

#header {
  height: 50px;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(227, 108, 108);
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
  animation-name: header;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  position: relative;
  animation-direction: alternate;
}

@keyframes header {
  from {
    left: 0px;
  }
  to {
    left: 40vw;
  }
}

#container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#main {
  width: 650px;
  height: 70vh;
  background-color: brown;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.43);
}

#clickToShow {
  opacity: 0;
  max-height: 0;
  width: 0;
  overflow: hidden;
  border-radius: 20px;
  transform: rotate(180deg);
  transition: opacity 0.4s ease, max-height 0.4s ease, width 0.4s ease,
    transform 0.4s ease;
}

#clickToShow.show {
  opacity: 1;
  max-height: 70vh;
  width: 650px;
  transform: rotate(0deg);
  border-radius: 20px;
}

#sideBar {
  width: 200px;
  height: 70vh;
  background-color: brown;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.43);
}

button {
  border: none;
  border-radius: 10px;
  width: 100px;
  height: 25px;
  transition: 0.4s;
}

button:hover {
  transform: scale(110%);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.43);
}
a {
  text-decoration: none;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 24px;
  transition: 0.4s;
}

a:hover {
  transform: scale(110%);
  text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.43);
}

#mainTwo {
  width: 80vw;
  height: 70vh;
  background-color: brown;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.43);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

#mainTwo,
p {
  color: white;
  padding: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: left;
  line-height: 30px;
}
