/* RESET */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/*  FONTS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* HEADER */
header {
  position: fixed;
  width: 100vw;
  height: 100px;
  background: black;
}

nav {
  width: 64rem;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: black;
  overflow-x: hidden;
}

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

.logo img {
  margin-left: 25px;
  display: flex;
  width: 85%;
  height: 85%;
}

.logo h1 {
  margin-left: 25px;
  color: white;
}

.logo h1 a {
  color: white;
  text-decoration: none;
}

.logo h1 a:hover {
  color: deepskyblue;
}

nav ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  margin-right: 25px;
  align-items: center;
  justify-content: center;
}

nav ul li:hover {
  border-bottom: 2px solid deepskyblue;
  transition: ease-in 0.2s;
}

nav ul li a {
  text-decoration: none;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 18px;
}

nav ul li a:hover {
  color: deepskyblue;
}

/* SECTION */
section {
  padding-top: 150px;
}

.container {
  width: 64rem;
  margin: 0 auto;
}

.clock-container {
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
  margin-bottom: 25px;
  font-size: 25px;
  font-style: bold;
}

.news-container {
  padding-right: 25px;
  padding-left: 25px;
}

.news-title {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: rgb(100, 100, 100);
  color: rgb(255, 255, 255);
}

.news-image {
  width: 100%;
  height: 50%;
  margin-bottom: 0px;
  border: 5px solid gray;
  display: flex;
  overflow-x: hidden;
}

.news-text {
  display: flex;
  margin-bottom: 50px;
  padding: 10px;
  background-color: gray;
  color: white;
  font-size: 1.2rem;
}

.news-button {
  display: block;
  width: 100%;
  margin-top: -50px;
  margin-bottom: 50px;
  background-color: rgb(100, 100, 100);
  padding: 5px;
  border: none;
}

.news-button a {
  color: deepskyblue;
  font-size: 20px;
}

/* FOOTER */
footer {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-color: black;
  color: white;
}

footer a {
  color: deepskyblue;
}
