@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    box-sizing: border-box; /* makes sure that the content width doesn't go over the screen display size */
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #fbfaf8;
    width: 100%;
}

h1 {
    font-family: 'Rozha One', serif;
    font-size: 50px;
    line-height: 1;
    color: rgb(14, 14, 14);
    margin: 20px 20px;
    padding: 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 10px;
    color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
}

p{
    font-size: 14px;
    line-height: 2;
}

hammenu-component{
    display: none;
}

menu-component {
    width: 100%;
    height: 100%;
}



/* OUR WEDDINGS */

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0px 200px;
    margin-top: 40px;
}

.blog-page{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.blog-page h2{
    text-transform: uppercase;
    margin-top: -20px;
    margin-bottom: 40px;
}

.blog-page p{
   padding: 0px 200px;
}

.title-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
    margin-bottom: 40px;
   
}

.title-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.divider{
    width: 55%;
    margin: 40px 0px;
}

.blog-text {
    
}

.gallery{
    width: 100%;
    padding: 40px 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;

}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

/* FOOTER */
footer-component {
    width: 100%;
    height: 100%;
   
}


/* Tablets*/

@media (max-width: 767.98px) {



}



/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 320px) and (max-width: 480px) {

    menu-component{
        display: none;
    }

    hammenu-component {
        width: 100%;
       display: block;
       position: fixed;
       z-index: 9999999;
    }

    footer-component {
        display: none;
    }

    h1 {
        font-family: 'Rozha One', serif;
        font-size: 40px;
        line-height: 1;
        color: rgb(14, 14, 14);
        margin: 10px 10px;
        padding: 0;
    }
    
    h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 200;
        color: rgb(14, 14, 14);
        margin: 0;
        padding: 0;
    }
    
    h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 200;
        letter-spacing: 10px;
        color: rgb(14, 14, 14);
        margin: 0;
        padding: 0;
    }
    
    p{
        font-size: 20px;
        line-height: 1.8;
       
    }
    

    .content {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0px 20px;
        margin-top: 80px;
    }
    
    .blog-page{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .blog-page h2{
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    
    .blog-page p{
       padding: 0px 20px;
       text-align: justify;
    }
    
    .title-image {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
       
    }
    
    .title-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .divider{
        width: 55%;
        margin: 40px 0px;
    }
    
    .blog-text {
        
    }
    
    .gallery{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    
    }
    
    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        
    }

}