@import 
url(
"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
    box-sizing: border-box;
}

:root {
    --_blue: #7DDBFD;
    --light_purple: rgb(149, 109, 189);
    --darker_purple: rgb(139, 83, 194);
    --light_blue: #ffffff37;
}

body {
    min-height: 100vh;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: var(--_blue);
    background-blend-mode: normal, lighten, multiply, hard-light;
    font-family: "Roboto", sans-serif;    
    font-weight: 400;
    overflow-x: hidden;
    color: white;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.wrapper {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 600px) {
   .game-container {

        width: fit-content;
        height: fit-content;

        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    
}
@media screen and (min-width: 600px) {
    .game-container {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
    


.input-container {
    margin-bottom: 40px;
}

.app-container {
    width: fit-content;
    height: fit-content;
    max-height: 100%;
    background-color: var(--light_blue);
    padding: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
}

.app-title {
    font-size: 200%;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

.mainDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-box {
    display: flex;
}

.input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    background-color: var(--light_blue);
    color: #fff;
    border-radius: 15px;
    font-size: 20px;

    
}

.input-field::placeholder {
    color: #ffffffab;
}

.rule-item {
    background-color: var(--_blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 12px;
    justify-content: space-between;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #ffffff;
}

footer {
    display: flex;
    font-size: small;
    width: 100%;
    background-color: var(--light_blue);
    align-items: center;
    padding: 0px 0;
    margin-top: auto;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
  margin: 0 10px;
}



li a p {
  display: block;
  text-align: center;
  text-decoration: none;
}