@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

h1 {
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

iframe {
    width: 100%;
    height: 125%;
    -moz-transform: scale(0.6, 0.6); 
  -webkit-transform:scale(0.6, 0.6); 
  -o-transform: scale(0.6, 0.6); 
  -ms-transform: scale(0.6, 0.6); 
  transform: scale(0.6, 0.6); 
  -moz-transform-origin: top center;
  -webkit-transform-origin: top center;
  -o-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  border: 0;
}

.iframe-container {
    height: 80%;
}

.card {
    float: left;
    border-radius: 10px;
  transition: 0.3s;
  padding: 30 10 10 10 
}

.center {
    margin: auto;
    width: 80%;
    padding: 10px;
  }


/* Style the tab */
.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    border-radius: 20 0 0 0 ;
    background-color: #FFFFFF	;
  }
  
  /* 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: #5ba0fb;
    color: #FFFFFF
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border: none;
  }

  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }