*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: cursive;
}
body{
    background-color: #1a4d2e;
    width: 100%;
    height: 100vh;
}

.container{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(223, 220, 220);
    padding: 1.5rem;
    border-radius: 5px;
    border-bottom: 3px solid gray;
}
.btn{
    background-color: black;
    color: #e8dfca;
    border: none;
    padding: .3rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.btn:hover{
    box-shadow: 3px 4px 10px rgba(116,97,68, 0.95);
}
.value{
    border: 3px solid rgb(156, 154, 154);
    padding: .3rem 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 5px;
    outline: none;
}
.gen-body{
    background-color: white;
    min-height: 400px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.gen-content{
    width: 100%;
    max-height: 500px;
    overflow-y: scroll;
    font-size: 1.3rem;
    padding: 1.9rem;
}
.gen-content::-webkit-scrollbar{
    width: 10px;
}
.gen-content::-webkit-scrollbar-track{
    box-shadow: inset 
    0 0 6px rgba(0,0,0, .3);
}
.gen-content::-webkit-scrollbar-thumb{
    background-color: rgb(207, 112, 112);
    border-radius: 5px;
}
