#main{
    
    display: flex;
    flex-direction: column;
    flex-wrap:  wrap;
    align-items: center;

    border: 1px solid black;
    border-radius: 3px;    
    
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: large;

    margin-top: 25px;
    margin-left: 25%;
    margin-right: 25%;
    
}

#content{
    display: flex;
    flex-direction: row;
    flex-wrap:  wrap;
    width: 400px;


}

#images{
    display: flex;
    border: 1px solid black;
    flex-direction: row;
    flex-wrap:  wrap;
    padding: 25px;
    gap: 10px;
}


#button {
    background-color: #4CAF50; /* Green */
    border: none;
    border-radius: 2px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}