@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');

body, html {
    height: 100%;
    margin: 0;
    /* font-family: Arial, Helvetica, sans-serif;
    background: #2c2c2c; */
}
.swiper-container {
    width: 100%;
    height: 100vh;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}
.swiper-slide {
    background: #3c3c3c;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    font-size: 24px;
    color: #ccc;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}    

h1 {
    font-family: Playfair Display SC;
    font-weight: 700;
    font-size: 4rem;
}

h6 {
    font-family: Playfair Display SC;
    font-weight: 600;
    font-size: 2rem;
}

p {
    font-family: Oxygen;
    font-size: 1rem;
}

.mobile-menu {
    display: none;
}

@media (min-width: 420px) and (max-width: 500px) {
    .mobile-menu {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    h1 {
        font-family: Playfair Display SC;
        font-weight: 700;
        font-size: 3.5rem;
    }
    
    h6 {
        font-family: Playfair Display SC;
        font-weight: 600;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 420px) {
    .mobile-menu {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    h1 {
        font-family: Playfair Display SC;
        font-weight: 700;
        font-size: 3rem;
    }
    
    h6 {
        font-family: Playfair Display SC;
        font-weight: 600;
        font-size: 1rem;
    }

  }