/* mobile css*/
body {
    background-color: #84915a;
    color: rgb(0, 0, 0);
}
.icon{
    display: block;
}
nav ul{
    display: none;
    color: white;
}
li {
    color: white;
}
header{
    background-color: white;
    width: fit-content;
    height: 7px;
}
div {
    width: fit-content;
    border: 8px solid rgb(241, 235, 235);
    padding: 50px;
    margin: 20px;
    background-color: rgba(0,0,0,.5);
    color: #fff;
  }

logo {
    width: 20px;
    height: 20px;
}

/* tablet css*/
@media screen and (min-width:600px) {
    body{
        background-image: url("z.jpeg");
        background-size: cover;
    }
    .icon{
        display: none;
    }
    nav ul {
        display: block;
    }

    main{
        display: grid;
        grid-template-columns: 50% 50%;
    }
    
}

@media screen and (min-width:900px) {
    body{
        background-image: url("z.jpeg");
    }

    main{
        display: grid;
        grid-template-columns: 33% 33% 33%;
    }
}

@media screen and (min-width:605px) and (max-width:610px){
    body{
        background-color: black;
    }   
}

