/*
#s1 div {
    background-color: red;
    
    justify-content: center;
  }
  @media screen and (max-width: 1024px) and (min-width:600px){
  #s1 span {
    background-color: blue;
    mix-blend-mode: difference;
  }
}
*/

@font-face {
    font-family: 'Kruti';
    src: url(Kruti\ Dev\ 010\ Regular.ttf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url(BarlowCondensed-Medium.ttf);
    font-style: normal;
    font-weight: 500;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family:Arial, Helvetica, sans-serif;
}

.col p {
    text-align: justify;
    font-family: 'Barlow';
    font-size: 1.3vw;
}

#header{
    padding: 10px;
    text-align: center;
    background-color: rgb(255, 0, 0);
    color: yellow;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: black    ;
    font-size: 2.8vw;
    display: flex;
    justify-content: center;
    
    position: sticky; top: 0;
}

#header h1 {
    transform: scaleY(1.3);
}

@media screen and (max-width: 600px) {
    #header {
        font-size: 25px;
    }
    .col p {
        text-align: justify;
        font-family: 'Barlow';
        font-size: 20px;
    }
}

#header img {
    display: flex;
    width: 15vw;
    
    
}

.label {
    border-radius: 0;
    margin-right: 30px;
}

.grid img{
    display: block;
    width: 100%;
    max-width: 100%;
    
    border-radius: 25px;
}

.ecno img {

    height: 7vw;
    margin-left: 30px;
    
}

@media screen and (max-width: 1085px) {
    .label {
        display: none;
    }
    .ecno {
       display: none; 
    }
}


.grid{
    padding: 10px;
    
    display: grid;
    grid-gap: 10px;


    @media (min-width:786px) {
        grid-template-columns: repeat(3,1fr);   
    }

    @media (min-width:600px) and (max-width:786px){
        grid-template-columns: repeat(2,1fr);   
    }


    @media (min-width:400px) and (max-width:600px){
        grid-template-columns: repeat(1,1fr);   
    }


    .col{
        background-color:white;
        margin-bottom: 5px;
        align-self: self-start;
        padding: 10px;
        

        border-radius: 25px;



    }
}

.dharti {
    font-family: 'kruti';
    display: flex;
    justify-content: space-between;
    
    
}

.galaxy {
    font-family: 'kruti';
    display: flex;
    justify-content: space-between;
    
    
}






/* @media screen and (max-width: 600px) {
    .dharti {
        display: block;

    }

    .galaxy {
        display: block;
    }

    .col {
        padding: 0px;
    }
} */