.container{
    width: 90vw;
    max-height: 85%;
    margin: 1rem auto;
    
    display : flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;

}

h1 { 
    margin: auto;
    display: inline-block;
    color: blueviolet;
}


.image {
    margin: 1rem auto;
    display : inline-block;
    z-index: -1;
}
.content{
    width: 85vw;
    margin: 0 auto;
    padding: 1rem;
    background-color: #f4f4ff;

}
.block {
    display: inline-block;
}
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

article{
  padding-top: 1rem;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
@media  screen and (max-width: 700px) {
    .container {
        width: 90vw;
        height: 45vh;
    }

    .image {
      display: inline-block;
        margin: 1rem auto;
       max-height: 45vh;
       max-width: 90vw;
       z-index: -1;
    }
    
    .content {
        width: 90vw;
    }
    h1 {
        font-size: 1.5rem;
    }
    
  
}