@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700;900&family=Nova+Square&family=Squada+One&display=swap');

body {
    margin: 0%;
    padding: 0%;
    outline: 0ch;
}

.container {
    height: 100vh;
    font-family: "Montserrat";
    height: 100vh;
}

.main_content {
    background-color: #2b2922;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 50vh;
}

/* -------------------------- */
/* -------------Navbar------- */
/* -------------------------- */

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    justify-content: space-between;
    height: 15vh;
}

.first {
    flex: 1;
}

.first>img {
    width: 35%;
}

.second {
    flex: 2;
}

.third {
    flex: 1;

}

.list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.list-item {
    color: #54524a;
    display: inline-block;
    padding: 0px 0px 0px 30px;
    transition: all 300ms ease-in-out;

}

.list-item:hover {
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.1rem;
}

.button-small {
    font-family: "Montserrat";
    color: #857732;
    border: 1px solid #857732;
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 1.1rem;
    background-color: transparent;
    font-weight: 500;
    transition: all 200ms ease-in-out;
}

.button-small:hover {
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 28px;
    font-size: 1.2rem;
    cursor: pointer;

}

/* -------------------------------- */
/* -------------Main section------- */
/* --------------------------------*/

.Main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 35vh;
}

.main-heading {
    color: #fff;
    font-weight: bolder;
    font-size: 3.5rem;
    line-height: 1.5;
    padding-right: 40px;
    flex: 1;
    margin: 0%;
}

.Main>p {
    color: #fff;
    line-height: 1.5;
    text-align: left;
    padding: left 20px;
    flex: 1;
}


.court_image {
    width: 100%;
    position: absolute;
    top: 20%;
    z-index: -1;
}