body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: Arial, sans-serif;
}

#header {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#title {
  display: block;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: monospace;
  color: #7535ff;
}

#headline {
  font-size: 1.25rem;
  font-family: monospace;
  color: #261e36;
}

#socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#socials img {
  width: 30px;
  transition: transform 0.3s;
}

#socials img:hover {
  transform: scale(1.2);
}

.content {
  display: none;
  flex: 1;
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

h2 {
  border-bottom: 2px solid #7535ff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

h3 {
  margin: 5px 0;
}

p {
  margin: 5px 0 10px;
}

ul {
  list-style-type: none;
  padding: 0;
}


#temp-p{
  text-align: center;
  margin: 25px;
  font-size: 30px;
  color: rgb(233, 43, 0);
  border: solid 2px yellow;
}