body {
  background-image:radial-gradient(#f260ffab 1px, transparent 1px);
  background-size: 20px 20px;
}

button {
  width: 100px;
  height: 40px;
  border-radius: 8px;
  background-color: rgb(216, 82, 72);
  color: white;
  font-weight: 700;
  text-shadow: 0px 0px 10px;
  box-shadow: 2px 2px 0px black;
}

button:hover {
  background-color: rgb(216, 82, 72);
  color: white;
  font-weight: 700;
  text-shadow: 0px 0px 10px;
  box-shadow: none;
  cursor:pointer;
}

nav {
  border: solid rgb(223, 221, 221);
  border-radius: 5px;
  height: 60px;
  width: 100%;
  display: flex;
  position: fixed;
  z-index: 99;
  background-color: white;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 0px 10px;
  box-shadow: 5px 5px 5px black;
}

.links {
  display: flex;
  gap: 20px;
  font-family: "Limelight";
  font-size: 20px;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0px;
}

#top {
  background: url('../images/tempPainting.jpg');
  background-size: cover;
  color: white;
  text-shadow: 5px 5px 5px black;
  height: 600px;
  border-bottom: solid 10px rgba(128, 128, 128, 0.747);
  margin-top: 60px;
}

#mid {
  padding: 40px;
  margin: 0px;
  max-width: 1000px;
}

.sources {
  border: solid 15px rgba(0, 25, 136, 0.356);
  border-radius: 15px;
  display: flex;
  width: 80%;
  height: 300px;
  overflow-x: scroll;
  gap: 2px;
  margin-bottom: 50px;
  box-shadow: 5px 5px 1px black;
}

.sources img {
  border: solid 1px black;
}

.sources::-webkit-scrollbar {
  display: none;
}

.text {
  text-align: center;
  border: solid grey;
  border-radius: 15px;
  padding: 10px;
  background-color: rgba(255, 107, 8, 0.445);
  box-shadow: 5px 5px 1px black;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.textOne li {
  text-align: start;
  list-style-position: inside;
  margin: 10px;
  font-size: 18px;
}
.textOne {
  width: 98%;
  align-self: flex-start;
  border: solid grey;
  border-radius: 15px;
  padding: 10px;
  background-color: rgba(57, 103, 228, 0.37);
  box-shadow: 5px 5px 1px black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-shrink: 3;
}
.textTwo {
  text-align: end;
  width: 98%;
  align-self: flex-end;
  border: solid grey;
  border-radius: 15px;
  padding: 10px;
  background-color: rgba(222, 57, 228, 0.315);
  box-shadow: 5px 5px 1px black;
  gap: 20px;
  display: flex;
  align-items: center;
}

h2 {
  font-family: "Limelight";
}

.imgContainer {
  border: solid grey;
  height: 315px;
  width: 450px;
  flex-shrink: 1;
  background-image: url("../images/salimPic.png");
  background-size: cover;
  background-position: 30%;
}

.imgContainer2 {
  border: solid grey;
  height: 315px;
  width: 450px;
  flex-shrink: 1;
  background-image: url("../images/tempPainting.jpg");
  background-size: cover;
  background-position: 30%;
}

@media (max-width: 610px) {
  .textOne,
  .textTwo {
    flex-direction: column;
  }
  .imgContainer {
    width: 200px;
  }
  .imgContainer2 {
    width: 200px;
  }
}

@media (max-width: 510px) {
  .links {
    font-size: 15px;
  }
  .signUp button {
    width: 45px;
    height: 40px;
    font-size: 12px;
  }
}

@media (max-width: 410px) {
  .links {
    font-size: 11px;
  }
  .signUp button {
    width: 37px;
    height: 30px;
    font-size: 10px;
  }
}