/* BODY */
body {
  background: #edf0fa;
  margin: 0;
  overflow: hidden;
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
}

header #email {
  display: block;
}

.logo {
  margin-left: 20px;
}

.user {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #0f2b6e;
  margin-right: 50px;
  text-align: right;
}

h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #0f2b6e;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}

h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #0f2b6e;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: left;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: rgb(15 43 110 / 20%) 0px 2px 10px 0px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  background-image: linear-gradient(90deg, #ffb625, #ff554f);
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
}

/* ASIDE */
.aside {
  position: fixed;
  height: 100vh;
  max-height: calc(100vh - 87px);
  overflow: auto;
  top: 95px;
  padding-right: 15px;
  right: 15px;
  bottom: 0;
  width: 400px;
}

.fullsize-iframe {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: white;
}

.aside .card {
  margin-bottom: 20px;
}

.links {
  font-size: 14px;
  font-family: 'Quicksand';
  color: #0f2b6e;
  line-height: 20px;
}

.link {
  color: #0f2b6e;
  font-family: 'Quicksand';
  padding: 5px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 300;
  transition: all 250ms;
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  background-image: linear-gradient(90deg, #ffb625, #ff554f);
  width: 0px;
  height: 2px;
  bottom: 0;
  left: 5px;
  transition: all 250ms;
}

.link:hover::after {
  width: 30px;
  transition: all 250ms;
}

.link:hover {
  transition: all 250ms;
  font-weight: 700;
}

/* SECTION */
section {
  position: fixed;
  width: calc(100vw - 350px - 120px);
  min-height: calc(100vh - 145px);
  top: 95px;
  left: 10px;
  padding: 0px;
}

.nopadding {
  padding: 0px !important;
}

iframe {
  border: 0px;
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 115px);
}

@media screen and (max-with: 500px) {
  .link {
    text-align: center;
  }
}
