:root {
    --bg-body: #ffffff;
    --bg-cont: #ffffff;
    --bg-active: #F0B27A;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-body);
}

.tab-container {

   box-shadow: 3px 5px 10px rgba(0, 0, 0, .8);
   border-radius: 5px;
   display: block;
   width: 100%;
   overflow-x: auto;
   -ms-overflow-style: -ms-autohiding-scrollbar; 

}

.options {
    display: flex;
    width: 100%;
    height: 15%;
    list-style: none;
}

.option {
    flex-grow: 1;
    text-align: center;
    line-height: 60px;
    border: solid 1px rgba(4, 51, 78, .6);
    color: #F0B27A;
    cursor: pointer;
}

.option-active {
    background: var(--bg-active);
    border-bottom: 1px solid rgba(7, 63, 95,.4);
	color: #fff;
}

.contents {
    width: 100%;
    height: 85%;
}

.content {
    width: 100%;
    height: 100%;
    color: #fff;
    display: none;
    padding: 20px;
}

.content-active {
    display: block;
}

.content h3 {
    text-align: center;
    padding-bottom:  10px;
    border-bottom: solid 1px rgba(255, 255, 255, .3);
    letter-spacing: 2px;
    margin: 10px;
}

.content p {
    margin: 15px;
    letter-spacing: 1px;
}