@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&family=Playball&family=Roboto&display=swap');

body{
    color: white;
    font-family: 'Roboto', sans-serif; 
    background-color: #f5f3ff;  
}

.container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 45vw;
    text-align: center;
    row-gap: 1.5rem;
    margin: auto;
    margin-top: -1rem;
    background-color: #ddd6fe;
    border: 2px solid #6d28d9;
    border-radius: 5px;
}

h1{
    color: white;
    font-family: 'Bungee Inline', cursive;  
    line-height: 1.1;  
    margin-top: 1rem;
    font-size: 3rem;
    text-shadow: 0px 0px 16px #6d28d9;
}

.heading{
    font-family: 'Playball', cursive;
    font-size: 1.4rem;
    width: 40vw;
    margin: auto;
    margin-top: -2rem;
    text-shadow: 1px 1px 4px black,2px 2px 4px #6d28d9;
}

label{
    color: #6d28d9;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: -1rem;
    text-shadow: 2px 2px 4px white,2px 2px 8px black;
}
input{
    font-size: 1.2rem;
    border: 2px solid #6d28d9;
    margin: auto;
    height: 2.5rem;
    width: 35%;
    border-radius: 5px;
    text-indent: 5px;
}

button{
    margin: auto;
    width: 8vw;
    height: 2.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    outline: none;
    transition: 0.2s all;
    color: #6d28d9;
    border: 3px solid #6d28d9;
}
button:hover{
    background-color: #6d28d9;
    color: white;
    border: 3px solid #6d28d9;
}
button:active{
    transform: scale(0.98);
    box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
h2{
    font-size: 2rem;
    margin-bottom: -1rem;
    text-shadow: 2px 2px 4px #000000;
}
#check-luck, #message{
    color: #6d28d9;
}

.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background-color: #ddd6fe;
    opacity: 0.8;
    justify-content: center;
    border: 2px solid #6d28d9;
  }
  .footer p{
    margin-top: 1rem;
    margin-bottom: auto;
    color: black;
    font-size: 1rem;
    text-align: center;
  }
 
  .list-non-bullet {
    list-style: none;
    padding-inline-start: 0px;
    text-align: center;

  }
  
  .list-item-inlines {
    display: inline-block;
    width: 2rem;
    margin: auto;
  }
 
  .links .fa-brands{
    color: black;
    font-size: 1.2rem;
    transition: .2s;
  }
  .links .fa-brands:hover {
    color: #6d28d9;
  }

  @media only screen and (max-width: 650px) {
    .container {
      width: 95%;
    }
    h1{
      font-size: xx-large;
    }
    .heading{
      font-size: large;
      width: 70%;
    }
    label{
      font-size: large;
    }
    input{
      width: 40%;
    }
    .btn{
      font-size: large;
      width: auto;
    }
    h2{
      font-size: x-large;
    }
    h3{
      font-size: larger;
    }
    .footer{
      width: 99%;
    }
  }