*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 800px;
    max-width: 1100px;
    background-color: white;
    padding: 100px;
}
.box{
    width: 100%;
    height: 100%;
    background-color:antiquewhite;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.content{
    width: 100%;
    height: 100%;
    background-color: beige;
}
.tabs{
    background-color: rgb(160, 160, 226);
    height: 40px;
    width: 60px;
}
.tab{
    background-color: beige;
    height: 50px; 
}
.tab button {
    background-color:grey;
    transition: 0.5s;
}
.tab button:hover{
    background-color:  rgb(160, 160, 226);
}
.tabs.active{
     background-color:  rgb(160, 160, 226);
}
.tabcontent{
    border: 1px solid black;
    display: none;
}
p{
    font-size:x-large ;
}
.tabcontent.active{
    display: block;
}