body {
    margin: 0;
    padding: 0;
    /* background: var(--bg-image) no-repeat center center fixed; */
    /* background-size:cover; */

    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--bg-image); */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: row;
    justify-content: right;
}

main {
    overflow: hidden;
}


section {
    height: 100vh;
}

.titleImage {
    position: sticky;
    z-index: 1000;
    width: 25vw;
    aspect-ratio: 3/2;
    background-image: url(../imgs/tennismate.png);
    background-size: cover;
    background-position: center;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: .5s ease-in-out;
}


.welcome {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-color); */
}

.buttons {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 100px;
}

.buttons button {
    width: 25vw;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 0;
    position: relative;
}


.buttons button img {
    width: 70%;
    border: 3px solid var(--olive-green);
}

.buttons p {
    margin: auto ;
    padding: 0;
    /* background-color: var(--primary-bg-color); */
    mix-blend-mode: difference;
    width: 50%;
}

.zoomIn{
    scale: 1.5;
}

.account {
    width: 60px;
    height: 60px;
    margin: 13.5px;
}

.greenCava {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background-color: var(--olive-green);
    z-index: -1;
    max-height: calc(40vh - 30px);  
    /* opacity: 0.5; */
    transition: all 0.5s ease-in-out;
}

.beigeCava {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 230px;
    background-color: var(--warm-beige);
    z-index: -1;
    max-height: 40vh;
    transition: all 0.5s ease-in-out;
}

.tallBottom {
    height: 60vh;
    max-height: 60vh;
}

.tallBottom.beigeCava {
    height: calc(60vh + 30px);
    max-height: calc(60vh + 30px);
}

button {
    border: 2px solid var(--olive-green);
    background-color: var(--button-bg);
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: medium;
    padding: 5px 10px 5px 10px;
}