.content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  background-color: #222222;
}

.title {
  font-size: 64px;
  font-weight: 600;
}

.options {
  display: flex;
  gap: 24px;

  @media (max-width: 800px) {
    flex-direction: column;
}
}

a {
  text-decoration: none;
  font-size: 16;
  font-weight: 500;
  padding: 16px;
  border-radius: 15px;
  background-color: #c1c1c1;
  color: #222222;
}

a:hover {
  color: #f8f8f8 !important;
}

.logAction {
  position: absolute;
    top: 0;
    left: 0;
    color: white;
}

.logAction a {
    background: none;
    color: white;
}

.logAction button {
    border: none;
    background: none;
    color: white;
}

.customContainer {
  display: contents;
}

main {
    background: #80808038;
    padding: 30px;
    border-radius: 15px;
}