#container{
    width:900px;
    margin:auto;
    border:2px solid black;
}

#header{
    height:60px;
    border-bottom:1px ;
    margin-bottom: 1px;
    background-color: rgb(255, 206, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}

#main{
    display:flex;
    gap:1px;
}

#left{
    width:200px;
    border:1px ;
    height: 100px;
    margin: 1px;
    background-color: rgb(255, 206, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}

#content{
    flex:1;
    border: 1px;
    margin: 1px;
    background-color: rgb(255, 206, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}

#right{
    width:200px;
    border:1px ;
    margin: 1px;
    background-color: rgb(255, 206, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer{
    height:60px;
    border-top:1px ;
    margin-top: 1px;
    text-align:center;
    background-color: rgb(255, 206, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}