body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;

    background-image: url(./pexels-frank-cone-140140-3607542.jpg);
    background-size: cover;
}

.container {
    background: rgb(82, 75, 210);
    padding:1.5rem; 
    padding-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%; 
    max-width: 600px;
    
    background: hsla(214, 85%, 37%, 1);
    background: radial-gradient(circle, hsla(214, 85%, 37%, 1) 0%, hsla(231, 85%, 24%, 1) 100%);
    background: -moz-radial-gradient(circle, hsla(214, 85%, 37%, 1) 0%, hsla(231, 85%, 24%, 1) 100%);
    background: -webkit-radial-gradient(circle, hsla(214, 85%, 37%, 1) 0%, hsla(231, 85%, 24%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0E55B1", endColorstr="#091970", GradientType=1 );
    }

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input{
    font-size: 25px;
    font-family:monospace;
    
}

#name{
    height: 45px;
    border-radius: 5px;
    border: none;
}

#surname{
    height: 45px;
    border-radius: 5px;
    border: none;
}

#day{
    height: 45px;
    border-radius: 5px;
    border: none;
}
#month{
    height: 45px;
    border-radius: 5px;
    border: none;
}
#year{
    height: 45px;
    border-radius: 5px;
    border: none;
}

#get_insights{
    margin-top: 20px;
    height: 50px;

    border: none;
    border-radius: 5px;
    font-size: 30px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffd700;
    transition: 0.25s;
}

#get_insights:hover{
    transform: scale(1.05);
}

#result{
    font-size: 17px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (max-width: 600px) {
    .container {
        padding: 2rem; /* Adjusted padding for smaller screens */
    }

    .container h1 {
        font-size: 2rem;
    }
}