#page{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white; 
}

.row {
    display: table;
    width: 100%; 
    table-layout: fixed; 
    border-spacing: 10px; 
}

.column {
    display: table-cell;
    text-align: center;
    height: 10%;
}

.column2 {
    display: table-cell;
    text-align: center;
    background-color: #fcbc04;
    border-radius: 15px;
}

.title{
    display: flex;
    height: 10%;
    width: 50%;
    justify-content: center;
    border: 1px solid black;
}

img{
    width: 50%;
}