body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* prevent scroll */
    box-sizing: border-box;
   background: #725ae0;
    background: linear-gradient(
        180deg,
        rgb(27, 13, 89) 0%, 
        rgb(10, 9, 14) 45%, 
        rgba(19, 17, 28, 1) 55%, 
        rgb(27, 13, 89) 100%
    );  
}

#main {
  margin: 0;
    height: 200px;
    width: 500px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 500px) {
  #main {
    font-size: 22px; /* or any size you prefer for smaller screens */
  }
  body {
    background-color: rgb(10, 9, 14) ;
  }
}

ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center; 
    flex-direction: column;
    padding: 0  ;
}

li {
    width: 100%;
    justify-content: center;
    display: flex;
    font-weight: bolder;
}

a {
    color: #dadada;
    /* text-decoration: none; */
}

.andika-regular {
  font-family: "Andika", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.andika-bold {
  font-family: "Andika", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.andika-regular-italic {
  font-family: "Andika", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.andika-bold-italic {
  font-family: "Andika", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.fredoka {
  font-family: "Fredoka", "Andika";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
