*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Manufactured COnsent';
    src: url(../fonts/ManufacturingConsent-Regular.ttf) format('truetype');
}
body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* prevents sideways scroll */
    overflow-y: hidden;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    z-index: 2;
    justify-content: space-between;
}

header .logo {
    height: 60px;
    margin-right: 10px;
}


header a {
    display: none;
    text-decoration: none;
    color: black;
    height: 50px;
}

/* .booknow {

    height:50px;
    


} */

header h1 {
    font-family: 'Manufactured Consent', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: black;
    text-shadow:
      -1px -1px 0 rgb(255, 255, 255),
       1px -1px 0 white,
      -1px  1px 0 white,
       1px  1px 0 white;
}

.carousel {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
} */

.slide.active {
    opacity: 1;
}

footer .book-now {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 11px 0;
    font-size: 18px;
    cursor: pointer;
    
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel, .slide {
    max-width: 100%;
}




/* Adjust on larger screens */
@media (min-width: 768px) {

    header a {
      padding: 1px 6px;
        display: block;
        border-radius: 3px;
        color: white;
        background-color: black;
        text-decoration: none;
        padding-top: 5px;
        padding-right: 10px;
        padding-left: 10px;
        height: 35px;
        
    }

    /* header{
        font-size: 26px; 
    } */
    .slide {
        background-position: center top;
    }

    header h1 {
        font-size: xx-large;
    }
}

/* @media (min-width: 1024px) {
    .slide {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
} */
