body {
  margin: 0;
  background:linear-gradient(to bottom right,#009999,#003366);
  background-attachment:fixed;
}

/* Logo and navbar */
.logo-name {
display:flex;
justify-content: center;
}

.logo-name img {
  width: 80px;
  height: 80px;
  margin: 10px;
  padding: 10px;
}

header h1 {
  font-family: phosphate;
  letter-spacing: 1px;
  font-size: 50px;
  color:aliceblue;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topnav a {
  text-decoration: none;
  color:#003366;
  font-size: 25px;
  font-family: phosphate;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}

.topnav a:hover {
  color: aliceblue;
}

/* The big news content */ 
.big-news {
  display:flex;
  align-items: center;
  justify-content: center;
  color: aliceblue;
  padding: 30px;
  font-family: avenir;
}

.big-news img {
  padding: 20px;
  width: 50%;
  border-radius: 30px;
}

.big-news button {
  border:aliceblue;
  border-radius:20px;
  padding: 15px;
  margin: 5px;
  background-color:aliceblue;
  color:#003366;
  font-weight: bold;
  font-family: avenir;
}

.big-news button:hover {
background-color: #003366;
color:aliceblue;
}

/* The other news */
.grid-parent {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin: 30px;
  color:aliceblue;
  font-family: avenir;
}

.grid-parent img {
  width: 100%;
  border-radius: 0 30px 0 30px;
}

.grid-parent img:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: 1s ease;
  }

.grid-parent button {
  border:aliceblue;
  border-radius:20px;
  padding: 15px;
  margin: 5px;
  background-color:aliceblue;
  color:#003366;
  font-weight: bold;
  font-family: avenir;
}

.grid-parent button:hover {
  background-color: #003366;
  color:aliceblue;
}

.grid-item {
  padding: 10px;
}

footer {
  background-color: #003366;
  display: flex;
  justify-content: center;
}

footer a {
  text-decoration: none;
  color:aliceblue;
  font-size: 15px;
  font-family: phosphate;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}

footer a:hover {
  color:#009999;
}

/* Responsive design */
@media (max-width: 667px) {
  .grid-parent {
    grid-template-columns: 1fr;
  }
  .big-news img {
    width: 100%;
  }
  .big-news {
    flex-direction: column;
  }
}

@media (min-width: 667px) and (max-width: 1024px) {
  .grid-parent {
    grid-template-columns: repeat(2,1fr)
  }
}
