/*

    1. IMPORTS 
    2. COLOR PALLET
    3. GLOBAL
    4. NAVIGATION
      *****See header.css******
    5. MAIN
      5.1 TYPOGRAPHY
      5.2 LAYOUT
      5.3 COMPONEMNTS
      5.4 IMAGES
      5.5 MEDIA QUERIES
    
    6. FOOTER
      *****See footer.css******

/* 
======================================================================== 
                              1. IMPORTS 
======================================================================== 
*/




/* 
======================================================================== 
                            2. COLOR PALLET 
======================================================================== 
*/

/* 
======================================================================== 
                             3. GLOBAL
======================================================================== 
*/

*,
*:before,
*:after {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}




/* 
======================================================================== 
                             4. NAVIGATION (HEADER)
======================================================================== 
*/

/* **********************SEE HEADER.CSS********************** */

/* 
======================================================================== 
                             5. MAIN
======================================================================== 
*/

/* 




/* 
*******************************
5.2 LAYOUT (MAIN)
*******************************
*/

.main-content {
    background-image: url("/assets/BG1.jpg");
    background-position: center;
    background-size: 100% 212%;
    height: 100%;
}


.main-page-top-heading-wrapper {
    margin: CLAMP(1.5REM, 2VW, 3REM);
}


.main-page-top-button-wrapper {
    display: flex;
    margin: 50px;
}

.button {
    background-color: red;
    border: none;
    color: whitesmoke;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    margin: auto;
    font-size: 33px;
    cursor: pointer;
    box-shadow: 3px 3px 25px 10px grey;
    font-family: 'Bebas Neue', cursive;
    transition: all 0.3s ease-in-out;

}

.button:hover {
    transform: scale(1.1);
  }

.sidebar {
    display: none;
}

.main-page-bottom{
    display:flex;   
    flex-wrap: wrap;
    margin-block-end: 3rem;
}

.content-box{
    width: 65%;
    min-width: 1200px;
    margin: auto;
    display: inline-grid;
    gap: -25px;
    padding:15px;
    grid-template-columns: auto auto;
}

.content-box p{
    margin-block: 1rem;
}

.grid-item{
    display: flex;
    backdrop-filter: blur(10px);
    background: rgb(129 133 129 / 20%);    
    padding: 25px;
    align-items: center;
}

/* 
*******************************
5.3 IMAGES
*******************************
*/

.collage1{
    width:clamp(200px, 100%, 520px);
}
/* 
*******************************
4.4 MEDIA QUERIES
*******************************
*/


@media only screen and (max-width : 1200px) {

    .content-box{
        display: block;
    min-width: 500px;

    }

    .collage1 {
        /* width: 400px; */
        margin: auto;
    }

}


@media only screen and (max-width : 500px) {

.main-content{
    width: 100vw;
}

.collage1 {
}

.content-box {
    display: block;
    min-width: 375px;
}
}

@media only screen and (max-width : 375px) {


    .content-box {
        min-width:320px;
        padding: 0;
    }

    .launch-img {
        width: 280px;
        height: 250px;
        margin: auto;
    }

    .main-page-top-button-wrapper, .main-page-top-heading {
        margin:1rem;
      
    }
    .main-page-top-heading-wrapper {
        margin:1rem;
    }


    .grid-item {
        padding: 1rem;
    }

}