*{
    padding: 0;
    margin: 0;
    font-variant: small-caps;
    font-weight: 700;
    box-sizing: border-box;

}

body{
    width: 100vw;
    height: 100vh;
    background-color: #e9eeede1;
    /* overflow-x: hidden; */
}

.div1{
    height: 15vh;
    width: 100%;
    padding: 20px;
    color: #e21414;
    
}
.main{
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.div2{
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    box-shadow: 5px 5px 5px 0px gray;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.head1{
    margin: 20px;
    color: green;
}
.list{
    margin: 10px;
    color: brown;
}
.list li{
    padding: 10px;
    font-size: 20px;
    list-style-type: none;
}
.list li::before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("cam1.png");
    background-size: cover;
    margin-right: 10px;
}

.foot{
    margin: 5px;
    width: 100%;
    height: 20vh;
}

.foot img{
    width: 50px;
    height: 50px;
}

.foot table{
    display: flex;
    justify-content: center;
    align-items: center;
}
#h2{
    margin-left: 40px;
    color: blue;
}

@media (max-width: 768px) {
  .div1 {
    padding: 10px 0;
    font-size: 18px;
  }
  .main {
    height: auto;
    padding: 10px 0;
  }
  .div2 {
    width: 90vw;
    min-width: unset;
    height: auto;
    padding: 10px 0;
  }
  .head1 {
    font-size: 20px;
    margin: 10px 0;
  }
  .list li {
    font-size: 16px;
    padding: 8px 0;
  }
  .foot {
    height: auto;
    padding: 10px 0;
  }
  .foot img {
    width: 35px;
    height: 35px;
  }
  #h2 {
    font-size: 18px;
    margin-left: 10px;
  }
}