* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #ff8000;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-height: 60px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.main {
  display: flex;
  flex: 1;
  padding: 1rem;
  gap: 1rem;
}

.sidebar,
.twitter {
  width: 20%;
}

.sidebar iframe,
.twitter iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.content {
  flex: 1;
}

.content iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.footer {
  background-color: #ff8000;
  padding: 1rem;
  text-align: center;
  color: white;
}

.footer .search {
  margin-bottom: 0.5rem;
}

.footer input[type="text"] {
  padding: 0.5rem;
  width: 300px;
  max-width: 90%;
}

.footer button {
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background-color: white;
  color: #ff8000;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.footer .social a {
  color: white;
  text-decoration: underline;
}
