@font-face{
  font-family: "Calculator";
  src: url("/fonts/Calculator.ttf") format("truetype");
}

html{
  position: relative;
  height: 100vh;
  overflow-y: hidden;
  }

body {
  background:#DFE3ED;
  margin: 0px;
  padding: 0px;
  display:flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 100%
  }
  
.topbar{
    
    height: 70px;
    width: 100%;
    
    background-color: #b6bccf;
    background-image: url(/Files/topbar_bg.png);
    background-blend-mode:hard-light;
    color: #323745;
    font-size: 35px;
    font-family: Calculator;
    font-weight: bold;
    
    border-bottom: 6px solid red;
    display: flex;
    align-items: flex-end;
    
  }
.topbar-text{
    padding-left: 5px;
    } 
  
img {
    display: inline-block;
    height: 100%;
    
    }
    
#inner-items{
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
    
.sidebar {
  height: 100%;
  width: 20%;
  flex: 20%;
  border-right: 6px solid red;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  
  font-size: 30px;
  font-family: Calculator;
  font-weight: bold;
  color: #323745;
  background: linear-gradient(rgba(186, 216, 240, 1), rgba(220, 230, 250, 1));
  }

.main{
  display: flex;
  background: linear-gradient(rgba(166, 196, 220, 1), rgba(200, 210, 230, 1));
  position: relative;
  flex: 80%;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  
  font-size: 30px;
  color:#627795;
  font-family: Calculator;
  font-weight: bold;
  }
  
iframe{
  width: 100%;
  height:100%;
  }
  
.button:hover{
  color: red;
  }
  
.button{
  display:block;
  }
  
#Email{
  display:none;
  }
  
#Database{
  display:block;
  }
  
#Frame{
  display:none;
  width: 100%;
  height: 100%;
  }

#Prof{
  display:none;
  }