@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&family=Merriweather&family=Montserrat:ital,wght@0,400;1,500&family=Sacramento&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    text-align: center;
    width: 100%;
    font-family: 'Fuzzy Bubbles', cursive;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.title{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: auto;
    padding: 0.75rem 0;
    background-color: #3e59f1;
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

h2{
    font-size: 1.7rem;
    margin-top: 1rem;
    font-weight: 500;
}

.sub-title{
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    font-size: 1.5rem;
}

input, label{
    display: block;
    margin: 0 auto;
}

label{
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
input{
    font-size: 1.5rem;
    border: 2px solid #1e46be;
    border-radius: 0.35rem;
    padding: 0.4rem;
}

.luckynumber-input{
    text-align: center;
}

.dob, .luckynumber{
    margin: 1.5rem 0;
}

button{
    margin: 2.5rem;
    border-radius: 28px;
    color: #182094;
    font-size: 1.4rem;
    background: #4f58b5;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    border: 2px solid #000000;
}

button:hover {
    background: #07a544;
    text-decoration: none;
    cursor: pointer;
}

.result{
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

.icons{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.icons i{
    margin: 0 2rem;
    color: black;
}

.icons i:hover{
    color: #b80f0f;
}

.bottom-container{
    background-color: #FEE2E2;
    height: 100px;
    width: 100%;
    margin-top: auto;
    padding: 1rem 0;
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
}

.footer-link{
    font-size: 1rem;
    display: inline-block;
}

.copyright{
    color: rgb(40, 23, 172);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}