@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
    scroll-behavior: smooth;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
}
.disclaimer{
        background-color: #f2f2f2;
        color: #000;
        left: 0;
        padding: 8px;
        position: fixed;
        text-align: center;
        bottom: 0;
        width: 100%;
        z-index: 15;
        display: flex;
        justify-content: space-around;
        font-size: small;
        border-radius: 50px;

}

.disclaimer .btn button {
    padding: 0 5px 0 5px;
}
.disclaimer .btn button:nth-child(1){
    border: 2px solid orange;
}

.disclaimer .btn button:nth-child(2){
    background-color: orange;
    color: black;
    border: 2px solid orange;

}
.header{    
        width: 100%;
        display: flex;
        justify-content: space-around;
        height: 4.5rem;
        align-items: center;
        background: rgba(209, 209, 209,0.1);
        position: fixed;
        top: 0;
        left: 0;
        padding: 0.1rem;
}
header .logo {
    text-shadow: 5px 6px 5px grey;
}


.burger-menu{
    display: none;
    cursor: pointer;
    
}
.line{
    width: 1.5rem;
    height: 0.25rem;
    margin: 0.2rem 0;
    background: red;
    border-radius: 5px;\
}

#logo{
    color: rgb(148, 140, 140);
}
#logo span{
    color: red;
}
.nav-items{
    list-style: none;
    display: flex;
}
.nav-items li{
    margin: 0rem 0.5rem;
}
.nav-items li a {
     text-decoration: none;
     color: rgb(255, 255, 255);
     margin: 0;
     padding: 5px 10px 5px 10px;
     text-shadow: 2px 0px 2px black;
}
.nav-items li a:hover{
    background-color: grey;
    color: black;
    border-radius: 50px;
    text-shadow: 2px 0px 2px white;


}
.landing-screen{
      background-image: url('images/white\ devil\ logo.jpg');
      width: 100%;
      height: 100vh;
      background-size: cover;
      background-position: center;
      box-shadow: inset 10000px 0 16px rgba(14, 13, 13, 0.4);
      color: rgb(248, 248, 248);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
}
.landing-screen h1{
    text-shadow: 15px 6px 5px black;
}
.get-started {
    background-color: red;
    color:white;
    padding: 0.5rem 0.5rem;
    border-radius: 41px;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px black;
}
.get-started:hover{
    background-color: #0e0eda;
    color: red;
    padding: 1rem;
    transition: 0.4s;
    text-shadow: 2px 2px 4px black;
}

.cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.cards-container .card{
    width: 20rem;
    margin: 0rem 1rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    border: 2px ;
    box-shadow: 2px 3px 9px black ;

}
.cards-container .card:hover{
    background-color: #ddd;
}
.card h6{
    font-size: 1rem;
    margin: 1.5rem 0;
}
.card p{
    font-size: 0.8rem;
}
.card-image{
    width: 6rem;
}
.card-section-header {
    text-align: center;
    text-transform: capitalize;
    font-size: 2rem;
    margin: 3rem 0;
}
footer{
    background-color: #0e0eda;
    color: #fff;
    padding: 2rem;
    margin-top: 6rem;
}
footer h1 {
    text-align: center;
}


/*///////////////////////////////media started//////////////////////////*/


@media only screen and (max-width:1100px) {
    .card p{
        font-size: 0.7rem;
    }
    .card h6{
        margin: 1rem 0;
    }
    .card-image{
        width: 5rem;
    }
}
@media only screen and (max-width:900px){
    .cards-container{
        flex-wrap: wrap;
    }
    .cards-container .card {
        width: 13rem;
        margin: 1rem;
    }
}
@media  only screen and (max-width:600px){
    .burger-menu{
        display: block;
    }
    .nav-items li{
        text-align: center;
        margin: 1rem 0;
    }
    .nav-items {
       position: absolute;
       flex-direction: column;
       display: none;
       background: rgba(150, 5, 5, 0.85);
       transform: translateY(100%);
       width: 90%;
       left: 50%;
       transform: translate(-50%, 100%);
       padding: 1rem;
       border-radius: 5px;
       animation: fade 0.3s ease-in-out;
    }
    .nav-items--active{
        display: flex;
    }
    h1{
        font-size: 1.2rem;
    }
    .landing-screen p{
        font-size: 0.9rem;
    }
    .get-started{
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    .header{
        padding: 0.1rem;
        height: 3.5rem;
        justify-content: space-around;  
      }
}
@media only screen and (max-width:490px){
    .disclaimer{
        flex-direction: column;
        border-radius: 20px;
        bottom: 1;
        left: 1;
        right: 1;
        margin-top : 1rem;
    }
    .disclaimer .btn{
        display: grid;
        grid-column: 1fr 1fr;
    }

    .disclaimer .btn .button{
        padding: 4px;
        margin: 4px;
        border: 1px solid orange;
    }
    .disclaimer .btn button:nth-child(2){
        background-color: orange;
        color: white;
        border: none;
        margin-top: 5px;
        

    }
    .cards-container .card{
        width: 10rem;
        margin: 0.5rem;
    }  
    .card-image{
         width: 3rem;
    }
    .card h6{
        margin: 0.5 0;
        font-size: 0.9rem;
    }
   .card p{
         font-size: 0.5rem;
   }
    .card-section-header{
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

}
@keyframes fade {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
