* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}

ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
  gap: 30px;
}
.Options {
  padding: 0px 10px;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Options > a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.Options > button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  color: white;
  background-color: #117dd7;
}

main {
  height: 89%;
  width: 80%;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "part1 part2 part2"
    "part3 part4 part5";
}

main > div {
  background-color: #117dd7;
}
.part1 {
  grid-area: part1;

  background-color: transparent;
  width: 80%;
  align-items: start;
  justify-content: center;
}
.part1 > img {
  height: 60px;
  width: 140px;
  display: inline-block;
}
.part1 > h1 {
  font-size: 80px;
  font-weight: 200;
  display: inline;
}
.part1 h1 > span {
  font-size: 15px;
  border: 1px solid black;
  padding: 10px;
  align-self: center;
  border-radius: 50px;
}
.part2 {
  grid-area: part2;
  background-color: rgb(83, 60, 29);
  background-image: url("./proj/purple.png");
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}
.part3 {
  grid-area: part3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  align-items: start;
}
.part3 > div > p {
  font-size: 20px;
  color: gray;
  margin-bottom: 20px;
}
.part3 > .Options {
  margin-top: 30px;
}
.part4 {
  grid-area: part4;
  background-color: rgb(15, 59, 43);
  background-image: url("./proj/logo.png");
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}
.part5 {
  grid-area: part5;
  background-color: rgb(17, 95, 6);
  background-image: url("./proj/pink.png");
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}
.logos {
  display: flex;

  justify-content: space-around;
  align-items: center;
  width: 80%;
}
.logos > img {
  height: 50px;
  margin-left: -40px;
  color: black;
  margin-bottom: 30px;
}
