*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 800px;
    max-width: 900px;
    background-color: white;
    padding: 100px;
}
.box{
    width: 100%;
    height: 100%;
    background-color:rgb(250, 201, 137);
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}
h2{
    text-align: center;
}
.tab1{
    height: 25%;
    width: 100%;
    background-color: rgb(150, 212, 212);
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    
    padding: 20px;
}
.tab2{
    height: 25%;
    width: 100%;
    background-color: rgb(150, 178, 219);
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    
    padding: 20px;
}
.tab3{
    height: 25%;
    width: 100%;
    background-color: rgb(140, 233, 153);
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    
    padding: 20px;
}
.tab4{
    height: 25%;
    width: 100%;
    background-color: rgb(233, 190, 224);
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    
    padding: 20px;
}
h3{
    padding: 10px;
    font-size: x-large;
}
button{
    height: 50px;
    width: 50px;
    display: flex;
    font-size: xx-large;
    justify-content: center;
    text-align: center;
    
}
button:hover{
    background-color: yellowgreen;
}
p{
    padding: 10px;
    border: 1px solid black;
    background-color: antiquewhite;
    font-size:larger;
}
.tabcontent{
    border: 1px solid black;
    display: none;
}
.tabcontent.active{
    display: block;
}
