#container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
#content1{
    width: 600px;
    background-color: #FFFFCC;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    padding: 20px;
    border-color: blue;
}
#content1 h1{
    text-align: center;
    font-size: 29px;
    margin-top: 0;
    margin-bottom: 30px;
    color: red;
}
#content1 p{
    text-indent: 40px;
}
#content2{
    width: 350px;
    background-image:url(./img/bt1.jpg) ;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    padding: 20px;
    border-color: blue;
    background-size: cover;
}
#content2 h1{
    text-align: center;
    color:yellowgreen;
    font-size: 29px;
    margin-top: 0;
    margin-bottom: 30px;
}
#content2 p{
    color: #FFFFCC;
    text-indent: 40px;
    line-height: 1.6;
}
