* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(120deg, #00e4d0, #5983e8);
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  max-width: 1000px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.banner {
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  background-color: #5983e8;
  margin-bottom: 20px;
}

.banner a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #5983e8;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.banner a:hover {
  background-color: #62bbee;
}

h2 {
  color: #555;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.bottom {
  display: flex;
  gap: 20px;
}

.leftSide {
  flex: 0 0 30%;
  padding: 15px;
  background: rgba(89, 131, 232, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.rightSide {
  flex: 0 0 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 8px;
  background-color: #00e4d0;
  justify-content: center;
}

.newsItem {
  flex: 0 0 40%;
  margin-bottom: 15px;
  padding: 15px;
  background: #f0f4ff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

img {
  max-width: 100%;
  border-radius: 15px;
}

h1,
h2 {
  color: #555;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="url"],
textarea {
  padding: 10px;
  border: 2px solid #5983e8;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: #00e4d0;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"] {
  padding: 10px;
  background: #5983e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

input[type="submit"]:hover {
  background: #62bbee;
  transform: scale(1.05);
}
