body {
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    min-height: 100vh;
    margin: auto;
    background-color: whitesmoke;
}

.mainNavBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 20px;
    height: 50px;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    padding: 10px 30px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
}

.mainNavBar a img {
    height: 36px;
    width: auto;
    display: block;
}

.mainNavBar nav {
    width: 200px;
    display: flex;
    justify-content: space-evenly;
}

.mainNavBar nav ul {
    list-style: none;
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
}

.content {
    min-height: calc(100vh - 50px);
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    max-width: 1200px;
}

.left-image img {
    max-width: 100%;
    height: auto;
}

.right-box {
    background-color: #ececec;
    border-radius: 30px;
    max-width: 100%;
    height: auto;
    padding: 20px;
}