* {
  margin: 0;
  padding: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  /* background: rgb(20, 20, 20); */
  color: white;
}


body{
    background-color: black;
}
a {
  color: rgb(218, 218, 218);
  text-decoration: none;
  text-transform: capitalize;
}
a:hover{
    text-decoration: underline;
}

button {
  padding: 10px 40px;
  background: rgb(87, 87, 87);
  border: none;
  border-radius: 12px;
  color: rgb(20, 20, 20);
}
button:hover{
    background-color: white;
}

header {
  padding: 20px;
  background: rgb(20, 20, 20);
  margin: 0;
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
  max-width: 1024px;
  margin: auto;
}

header ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

header div {
  width: 100%;
}
.flex-start {
  display: flex;
  justify-content: start;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-end {
  display: flex;
  justify-content: end;
  align-items: center;
}
main div{
    justify-content: center;
    gap: 50px;
    flex-direction: column;
    height: 20vh;

}
main p{
    width: 100vh;
    max-height: fit-content;
    text-align: center;
}
main h1{ 
    font-size: 56px;
}

