* {
  box-sizing: border-box;
  margin: 0;
  font-family: serif;
}

body {
  background-color: white;
}

.container {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-image: url("/images/bluebackground.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: large;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

#logo {
  border: 2px solid black;
  border-radius: 50%;
}

.heading_1 {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  position: fixed;
  top: 12%;
  color: rgb(240, 240, 246);
  text-shadow: 2px 3px 4px rgb(110, 98, 247);
  font-style: italic;
  font-size: xxx-large;
  width: 100%;
  background-color: white;
}

.title {
  display: flex;
  justify-content: space-around;
  margin: 60px;
}

.title div {
  background-color: blue;
  line-height: 30px;
  border-radius: 50%;
  justify-content: space-between;
}

.title div {
  display: flex;
  color: white;
  padding: 25px;
  margin: 10px;
  top: 20rem;
  font-size: 2.5rem;
  font-style: italic;
  text-shadow: 2px 3px 4px rgb(255, 0, 0);
}

ul {
  list-style-type: none;
  align-items: center;
}

li a:hover {
  padding: 10px;
  background-color: red;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav li {
  height: 45px;
  display: inline-block;
  padding: 25px 15px;
}

nav li a {
  height: 100%;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  color: yellow;
}

nav {
  position: relative;
  left: -10px;
  top: 25px;
}