@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

body
{
   background-color: rgb(246, 244, 237);
    width: 100%;
    height: 100vh;
    margin: 0;
}

header {
    top: 0;
    background-color: rgba(17, 17, 17, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 75px;
    padding-top: 2vh;
    padding-bottom: 2vh;
    gap: 20px;
    transition: all 0.3s;
}

.header-title {
    font-family: "korolev", sans-serif;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}
.header-buttons {
    display: inherit;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: inherit;
}

.header-book {
    width: inherit;
    display: inherit;
    justify-content: center;
    align-items: center;

    transition: inherit;
}

#home-button {
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 10px 15px;
    width: auto;
    text-wrap: nowrap;
    align-self: center;
    transition: inherit;
    font-family: "Korolev", sans-serif;
    text-decoration: none;
}


#home-logo
{
    width: 75px;
    height: auto;
    transition: 0.3s all ease-in-out;
}

#home-logo:hover{
    width: 100px;
    height: auto;
}

.body-content-wrapper
{
    display: flex;
    width: 100%;
    height: auto;
    gap: 40px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
}
  

.book-now-header
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    font-size: 2rem;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
}

.calendly-inline-widget
{
    width: 100%;
}