@import url('https://fonts.googleapis.com/css2?family=Delius&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
}

body,html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
      font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: rgb(16, 10, 38);
}

.logo {
    width: max-content;
    height: max-content;
    padding: 20px;
}

.wrapper {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.content {
    display: flex;
    flex-direction: column;
}

.headerText {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 25px;
    padding-left: 5px;
    text-shadow: 2px 2px 2px #000000;
    font-size: 2rem;
}

.text {
    font-size: 1.3rem;
    color: #f6f3fc;
}

.text li {
    list-style: decimal;
    margin-bottom: 20px;
}