 /* The sidebar menu */
 @font-face {
     font-family: 'EternalBold';
     src: URL('/resources/eternalui_bold.ttf') format('truetype');
 }
.container {
    background-color: #2a2e33;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 150px;
    row-gap:77px;
}
a {
    color: #89b4fa;
    text-decoration: none;

}
.prev a {
    position:fixed;
    align-self:end;
    display: block;
    bottom: 0px;
}
.titleMKHL
{
    /* padding-top: 20px; */
    text-align: left;
    font-family: "EternalBold", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 72px;
    color: #e4e9f0;
    margin: 0 0 0 0;
}
.titleci
{
    padding-top: 20px;
    text-align: left;
    font-family: "EternalBold", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #e4e9f040;
    margin-bottom: 0;

}
.textdiv
{
    display: flex;
    justify-content: left;
    flex-direction: column;
    margin-left: 30px;
    color: #e4e9f0;
}
.header
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mkhllogo
{
    margin-right: 5%;
    margin-top: 5%;
    user-select: none;
    -webkit-user-drag: none;
}
body {

  margin: 0;
}
.features
{
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-size: 18px;
    color: #e4e9f0;
    margin-left: 20px;
}
.download
{
    display: flex;
    justify-content: center;
}
.download button
{
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    cursor: pointer;
    margin: 20px;
    border-radius: 40px;
    font-size: 24px;
    padding: 10px 20px 10px 20px;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.download button:hover
{
    opacity: 80%;
}
.sourcecode:active
{
    /* opacity: 80%; */
    /* border-radius: 20px; */
    color: #3a3e43;
    background-color: #e4e9f0;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* font-size: 20px; */
}
.releases:active
{
    /* opacity: 80%; */
    /* border-radius: 20px; */
    color: #e4e9f0;
    background-color: #3a3e43;
    /* font-size: 20px; */
}
.releases
{
    background-color: #e4e9f0;
    color: #3a3e43;
    opacity: 85%;
}
.sourcecode
{
    color: #e4e9f0;
    background-color: #3a3e43;
}
footer {
  width: 100%;
  height: 100px;
  display: block;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    #00000000,
    #00000000 7px,
    #e4e9f0 7px,
    #e4e9f0 15px
  );
 flex-direction: column;
}

.description
{
      font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
}
.feat
{
    display: flex;
    justify-content: space-between;
    direction: row;
}
.feat img
{
    padding-right: 30px;
}
@media screen and (max-width: 768px) {
    .titleMKHL {
        font-size: 40px;
        padding-top: 10px;
    }
    .mkhllogo
    {
        width: 300px;
        height: 300px;
        margin-left: 15px;
        margin-right: 15px;
        padding: 0;
        
    }
    .header {
        flex-wrap: wrap;
        margin-left: 15px;
        margin-right: 15px;
        padding: 0;
        justify-content: center;
    }
    .features, .textdiv
    {
        margin-left: 15px;
        margin-right: 15px;
        padding: 0;
    }
    .feat
    {
        flex-direction: column;
    }
    .feat img
    {
        padding: 0;
    }
    .download
    {
        flex-direction: column;
    }
    .download a
    {
        display: flex;
        justify-content: center;
    }
    .download button
    {
        margin-bottom: 0;
    }
}


.fullscreen-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: repeating-linear-gradient(
    -45deg,
    #2a2e33,
    #2a2e33 10px,
    #e4e9f0 10px,
    #e4e9f0 20px
  );
  animation: drift 18s linear infinite;
  display: none; 
  transform: translateY(100%);
}

.fullscreen-block.startTransition {
  display: block;
  animation: startTrans 1s cubic-bezier(.86,0,.07,1) forwards, scrollBg 10s linear infinite;
}

@keyframes scrollBg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 500px 0; 
  }
}
@keyframes startTrans {
  from {
    transform: translateY(100%);   
  }
  50% {
    transform: translateY(0);
  }
  85%
  {
    transform: translateY(0);
  }
  to {
    transform: translateX(100%);
  }
}

.fullscreen-block.endTransition {
  display: block;
  animation: endTrans 0.5s cubic-bezier(.68, -0.55, .27, 1.55) forwards;
}
