body {
 background-color:beige; 
}

.shape-div {
    position: absolute;
    width: 100vw;
    display: flex;
    justify-content: center;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
    overflow: hidden;
} 

#svg {
    width: min(80vw, 80vh);
    height: min(80vw, 80vh);
}

h1 {
    padding-top:4vh;
    text-align: center;
    font-size: 3vh;
}

p {
    text-align: center;
    font-size: 1.5vh;
}
.button-container {
    position: absolute;
    bottom: 5vh;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.button-container button {
    padding: 10px 20px;
    outline: 0.1em solid rgb(75, 68, 55);
    font-size: 2vh;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fbf2a7;
    color: rgb(0, 0, 0);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}
.button-container button:hover {
    background-color: #84753b;
}

