@font-face {
    font-family: 'MyFont';
    src: url('./Melete-Bold.otf');
  }
  @font-face {
    font-family: 'MyFont2';
    src: url('./Ethnocentric.otf');
  }
body
{
    margin: 0px;
    font-family: 'Segoe UI';
    font-size: 14px;
    width: 100vw;
    height: 100vh;
    background-image: url('back.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
#bck_video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1000;
  }
.content {
    display: block;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    margin-top: 5px;
    color: #f1f1f1;
    width: calc(100% - 100px);
    height: calc(100vh - 90px);
    min-height: calc(100vh - 90px);
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: none;
    padding: none;
    border: none;
  }
  .content > .text 
  {
    display: block;
    text-indent: 40px;
  }
.welcome
{
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-style: oblique;
    font-family: MyFont;
    user-select: none;
    font-size: 72px;
}
.normal_text
{   display: block;
    font-family: 'Segoe UI'; 
    padding: 10px;
    font-size: 28px;
}
.logo
{
    display: block;
    height: 50px;
    margin: 0;
    padding: 0;
    user-select: none;
}
.text_logo
{
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* optional: horizontal centering */
  height: inherit;
  font-family: MyFont2;
  font-size: 28px;
  color: #45B0E1;
  width: 220px;
  margin-top: 2px;
}
.nav {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
  }
  .nav > .nav-header {
    flex: 0.98;
    height: 90%;
  }
  .nav > .nav-list {
    list-style-type: none;
    display: flex;
    gap: 0.5rem;
  }
  .nav > .nav-list > li{
    list-style-type: none;
    text-decoration: none;
    color: white;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    text-align: center;
    user-select: none;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav > .nav-list > li:hover {
    background-color: rgba(0, 153, 255, 0.2);
  }
  .nav > .nav-list > li:active {
    background-color: rgba(0, 153, 255, 0.4);
  }
  .nav > #nav-check {
      display: none;
  }
  .motto_text
  {
    position: relative;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    text-align: center;
    display: block;
    text-align: center;
  }
  .motto_text > .aboutus{
    display: block;
    position: relative;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: justify;
    font-size: clamp(8px, 2.5vw, 16px);
  }
  .indented {
    text-indent: 40px;
  }
  .contact-details
  {
    line-height: 16px;
  }
  .footer {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2px;
    text-align: center;
    font-size: 12px;
    color: #8d8d8d;
    font-weight: bold;
  }
  .footer-content p {
    margin: 5px 0;
  }
  .disabled
  {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
  }
  .flag
  {
    cursor: pointer;
    padding-bottom: 4px;
    vertical-align: middle;
  }
  .flag_selected
  {
    background-color: rgba(0, 153, 255, 0.2);
  }
  
  @media (max-width: 830px) {
    .content {
      width: 98%;
    }
    .welcome
    {
        font-size: 36px;
    }
    .normal_text
    {
      font-size: 18px;
    }
    .nav {
        width: 100vw;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
    }
    .nav > .nav-header {
        flex: 0.95;
        padding-left: 0rem;
      }
    .nav > .nav-btn {
      position: absolute;
      right: 0;
      top: 0;
      padding-top: 12px;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 3px;
      cursor: pointer;
    }
    .nav > .nav-btn:active {background-color: rgba(0, 153, 255, 0.2);}
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav > .nav-list {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 0rem;
      width: 100%;
      margin-top: 20px;
      background-color: rgb(0, 42, 70);
      height: 0;
      transition: all 0.3s ease-in;
      top: 30px;
      left: 0;
      overflow: hidden;
      z-index: 10;
      padding: 0;
    }
    .nav > .nav-list > li {
      width: 100%;
      padding-top: 10px;
      padding-bottom: 10px;
      list-style-type: none;
      text-decoration: none;
      color: white;
      cursor: pointer;
      height: 20px;
      line-height: 20px;
      text-align: center;
      user-select: none;
      vertical-align: middle;
    }
    .nav > #nav-check:checked ~ .nav-list {
      min-height: calc(100vh - 80px);
      overflow-y: auto;
      overflow-x: hidden;
    }
    .nav > #nav-check:checked ~ body {
      overflow: hidden !important;
    }
  }