body {
  background-image: url('/content/assets/images/wallpapers/waavves.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.gradient-text {
          background: linear-gradient(to bottom, #05c3dd 0%, #00AEEF 100%);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
        }
  
.solid {
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 14px;
  margin-top: 12px;
  flex-grow: 1;
  height: 1px;
  background: #b6d6fb;
}

.dot {
  border-top: 1px dotted;
  background-color: transparent;
  
}

.prelude {
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 18px;
  padding-right: 18px;
  background-color: #DFE2E6;
  color: #16161d;
  border: 5px outset #05c3dd;
  border-radius: 6px;
  box-shadow: inset 0 0 5px #16161d;
  font-size: 10.5pt;
  max-width: 640px;
  
}

.cloudbox {
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 18px;
  padding-right: 18px;
  background: linear-gradient(to bottom, #f8f9fc 0%, #e8f1fe 100%);
  border: 2px outset #a5cae4;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 10.5pt;
  max-width: 640px;
}

.main-grid {
    display: grid;
    gap: 20px;
    grid-template-areas: 
        "header header header"
        "left-side main right-side"
        "footer footer footer";
    padding: 3px;
    width: -webkit-fill-available;
    margin: 2px;
}

.header-site {
    grid-area: header;
}
.header-site-text{
    display:flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.left-side {
    grid-area: left-side;
    align-self: start;
}
.main-part {
    grid-area: main;
    max-width: 840px;
}
.right-side {
    grid-area: right-side;
    align-self: start;
}
.footer {
    grid-area: footer;
}

.l4d {
 vertical-align: middle;
}

.l4d2 {
  display: inline-block;
  padding: 1rem 1rem;
  vertical-align: middle;
}

.link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.link-item ico {
 padding: 1em;
}

#navi {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 5;
    grid-column-end: 3;
    padding: 5%;
    overflow: auto;
}

.hrline-heading {
  display: flex;
  align-items: center;
  padding: 5px;
  margin-bottom: 10px;
}

.hrline-heading-text {
  color: #003399;
  font-size: 11px;
  white-space: nowrap;
}

.hrline-heading-line {
  flex-grow: 1;
  height: 1px;
  background: #b6d6fb;
  margin-left: 8px;
}