*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    width: 100vw;
    padding: 1vw;
    overflow: auto;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
}

header{
height: 15%;
display: flex;
justify-content: space-between;
align-items: center;
}

main{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    overflow: auto;
 
}
footer{
    width: 100%;
    height: 8%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: brown;
    font-size: min(2.5vw,3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;

}

main .row{
  width: 100%;
  height: fit-content;
  margin: 10px;
  display: flex;
  justify-content: space-between;
 
}


.row .item{
background-color: rgb(86, 100, 96);
height: 100%;
min-height: 70px;
 /* width: calc(100%/data[0].length - 10px); */

display: flex;
justify-content: center;
align-items: center;
overflow: auto;
border: 1px solid;
font-size: 1vw;
font-weight: 600;
padding: 5px 10px;

cursor: pointer;
transition: background-color 0.2s;
}

.row .item:hover{

background-color: rgb(40, 53, 49);
color: white;
}
.row .item:active{
    background-color: white;
    color:rgb(40, 53, 49) ;
}

.logo{
    width: auto;
    height: 90%;
}
#title{
    font-size: min(2.5vw, 3rem);
    font-weight: 600;
}
#btn{
   padding: 10px;
   margin: 5px;
   font-size: min(4rem,3vw);
   border-radius: 10px;
   border: none;
   background:linear-gradient(rgb(107, 107, 236),rgb(81, 170, 237));
   color: white;
   transition: background 0.2s;
   cursor: pointer;
}

#btn:active{
background: linear-gradient( rgb(81, 170, 237),rgb(107, 107, 236));
}
@media screen and (max-width:1100px) {
    footer {
            font-size: 4vw;
        }
    .row .item{
        min-height: 30px;
    }
}

@media screen and (max-width:325px) {
    .logo {
            height: 60%;
        }
    #btn{
        font-size: 5vw;
    }
    
}

@media screen and (min-height:750px) {
    .logo{
       height:60%; 
    }
    #title{
      font-size: min(3.5vw, 4rem);
    }
    
}