h1{
    border-radius: 5px;
    font-family: 'Gill Sans';
    margin-top: auto;
    
}
body{
    background: #f2ffff;
}

div{
    padding: 20px;
    border-radius: 20px;
    line-height:46px;
    width:320px;
    height:223px;
}
p{
    width:550px;
    font-family: 'Gill Sans';
}
h1{
    font-size: 50px;
    margin-bottom: auto;
    /*color: #333;*/
    animation: bounce 3s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

input{
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
}

button{
    padding: 10px;
    border-radius: 8px;
}
p1{
    font-size: 18px;
    font-family: 'Gill sans';
}
#result{
    font-size: 20px;
    margin-top: 20px;
    opacity: 0;  /* Start hidden */
    transition: opacity 1000s ease-in-out; /* Make it fade in slower */
}
    
    /*
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite
}
*/
@keyframes example{
    
}
img{
    max-width: 400px;
}
/*
#result:hover {
    transform: scale(1.1);

}
*/

.anim{
    animation-name: slide_in;
    animation-duration: 1s;
    position: relative;

}

@keyframes slide_in {
    0% {
        opacity: 0;
        transform:translateX(-200px);
    }
    
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


li {
  margin: 10px 0; /* Adds spacing between list items */
}

li::marker {
  color: #000000; /* Changes bullet color */
  font-size: 18px;
}

strong1{
    line-height :none;
    font-size: 28px;
    font: bold;
}