.feature
{
    margin-top: -40px;
}
#round
{
    border-radius: 50%;
    border: 0.3rem solid #fff;
}
.fonts
{
    font-family: 'Kalam', cursive;
    font-weight: 600; 
}
#font-title
{
    font-family: 'Kalam', cursive;
    font-size: 25px;
}
.carousel-inner
{
    border-radius: 10%;
}
body 
{
    font-family: Arial, sans-serif;
}
header 
{
    background-color: #333;
    color: #fff;
    padding: 20px;
}
@media (max-width: 768px) 
{
    header 
    {
        padding: 10px;
    }
}
@media (max-width: 480px)
{
    body 
    {
        font-size: 14px;
    }

    header 
    {
        font-size: 18px;
    }
}
.icon-link 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: grey;
    margin-top: -55px;
}
#output 
{
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 4px;
    font-family: 'Kalam', cursive;
    background:white;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; 
}
#output::after 
{
    content: "";
    animation: blink 0.7s infinite;
}
@keyframes blink 
{
    0%, 100% 
    {
        opacity: 1;
    }
    50% 
    {
        opacity: 0;
    }
}
 a 
{
     text-decoration: none;
     color: white;
}
.buttonStyle
{
    color: white;
    background-color: rgb(90, 90, 90);
    transform: translate(-50%, 18%); 
    border-radius: 15px; 
    padding: 10px;
    text-align: center;
    position: absolute;
    right: 50%;
    left: 50%;
    width: 100%;         
    max-width: 250px;     
    min-width: 200px;     
}