body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  display: grid;
  place-content: center;
  height: 100vh;
  text-align: center;

}

.main-content {
  display: flex;
  flex-direction: column;
  max-width: 37.5rem;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.new-link {
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
}

.note {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #737373;
  color: white;
  border-radius: 1rem;
  margin-top: 2rem;
  height: 2.5rem;
  font-size: 1.25rem;
  font-weight: bold
}

.contact-info {
  margin-top: 2rem;
}

.custom-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    margin-top: 2rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .5rem;
    border-radius: .5rem;
    cursor: pointer;
}

.footer-logos .separator {
    height: 5rem;
    background-color: #737373;
    width: 1px
}

.logo {
  height: 6rem;
}

.copyright {
    text-align: center;
    font-size: 14px
}

a {
    font-weight: 500;
    cursor: pointer;
    color: #00a4dd
}

a:hover {
    color: #36b6e3
}

.main-content ul {
    font-size: 1.2rem;
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

