* {
  font-family: system-ui;
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  cursor: pointer;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

a {
  color: black;
}

.email {
  width: 50%;
  float: left;
  font-size: 16px;
}

.phone {
  width: 50%;
  float: left;
  font-size: 16px;
  text-align: right;
}

.availability {
  font-size: 16px;
  text-align: center;
}

.normal {
  font-size: 16px;
}

.download {
  font-size: 16px;
  text-align: center;
}

.header {
  font-size: 24px;
  text-align: center;
}

.dropdownnote {
  font-size: 12px;
  text-align: center;
}

.title {
  font-size: 32px;
  text-align: center;
  text-decoration: underline;
}

.disclaimer {
  font-size: 10px;
  text-align: center;
}

.portrait {
    position:fixed;
    bottom:0;
    right:0;
    width:64px;
    height:auto;
    display:block;
    z-index:-1;
}

.portrait:hover {
  width:auto;
}