body {
    margin: 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #F5F5F5;
    color: #333333;
    font-family: Arial, sans-serif;
}


#poem-info {
    margin-bottom: 1rem;
}

#poem-title {
    font-weight: bold;
    margin-bottom: 1rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

#poem-content {
    margin-bottom: 1rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    max-width: 90%;
}

.buttons {
    display: flex;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    margin-top: auto;
    padding-bottom: 10rem;
}

.buttons button {
    margin: 1.5rem 1.5rem;
}

#kids-poem-button,
#adult-poem-button {

    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 1.3rem;
    cursor: pointer;
}

#kids-poem-button:hover,
#adult-poem-button:hover {
    background-color: #3E8E41;
}


/* Styles for desktop */
@media only screen and (max-height: 1400px) {
    /* Add your desktop styles here */
    #kids-poem-button,
    #adult-poem-button {
        font-size: 4vw;
        padding: 1vh 12vw;
    }

    .buttons {
        padding-bottom: 1rem;
    }

    .buttons button {
        height: 25vh;
    }
    
    #poem-info {
        font-size: 1.8rem;
  
    }
    
    #poem-title {
        font-size: 2rem;
 
    }
    
    #poem-content {
        font-size: 1.5rem;
 
    }
    

}


/* Styles for mobile */
@media only screen and (min-height: 1400px) {
    /* Add your mobile styles here */
    #kids-poem-button,
    #adult-poem-button {
        font-size: 8vw;
        padding: 1vh 2vw;
    }

    .buttons {
        padding-bottom: 8rem;
    }

    .buttons button {
        height: 15vh;
    }
    
    #poem-info {
        font-size: 4rem;
  
    }
    
    #poem-title {
        font-size: 5rem;
 
    }
    
    #poem-content {
        font-size: 3rem;
 
    }


}
