*,
*:before,
*:after {
    box-sizing: border-box;
}

html{
    font-size: 16px;
}
body{
    margin: 0;
    padding: 0;
    text-align: center;
}
/*splash page styling*/
.splash-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFD9B8;
    color: #fff;
    z-index: 10;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem; 
}


button {
    padding: 15px 15px;
    font-size: 2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    background-color: grey;
    color: #fff;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.1);
}

.decorative-image {
    width: 50%;
    height: auto;
}

/*main content SVG styling*/
#obj{
    width: 1000px;
    height: auto;
    max-width: 100%;
    max-height:100%;
    padding-top: 40px;
}