html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #dedede;
    font-size: 17px;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow-x: hidden;
    font-family: Helvetica, sans-serif;
    height: 100%;
}

a {
    color:rgba(163, 166, 176, 0.8);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.container {
  max-width:900px;
  margin: auto;
}
.logo {
    width: 28%;
    margin: 8% auto;
}
.logo-img {
    width: 100%;
}
.logo-full {
    width: 100%;
    margin: 25% auto 1% auto;
}
.logo-full-img {
    width: 100%;
}
.social-media {
    width: 50%;
    margin: 5% auto;
    text-align: center;
}
.social-media-element {
    width: 14%;
    min-width: 34px;
    margin: 5%;
    opacity: 0.6;
}

.social-media-element:hover {
    opacity: 1;
}

.disclaimer {
    position: relative;
    margin: auto;
    padding: 15px;
    width: 300px;
    text-align: center;
    color:#494949;
    font-size: 15px;
}
.footer {
    width: 100%;
    height: 46px;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.7);
}

.footer a {
    color:rgba(163, 166, 176, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.page {
    /* height: calc(100vh - 47px); */
    height: auto;
}

.urlWarning {
    display: none;
    position: fixed;
    width: 60%;
    min-width: 350px;
    margin: 0 auto;
    background-color:rgba(0,0,0,0.97);
    top: calc(50vh - 200px);
    left: 20vw;
    z-index: 9999;
    border:1px solid rgba(60, 65, 82, 0.8);
}

.urlWarningText {
    text-align: center;
    padding: 5%;
}

.urlWarningText button{
    padding: 10px;
}

.newsbox {
    width: 100%;
    border: 1px solid rgba(60, 65, 82, 0.8);
    box-shadow: 1px 1px 15px;
    padding: 10px;
    box-shadow: 10px 12px 17px #000;
    background-color: rgba(0,0,0,0.4)
}

/* menu */
.menuDivider {
    font-size: 17px;
    font-weight: 400;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 50px;
  right: 4%;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #2e2e2e;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 300px;
  height: calc(100vh - 148px);
  margin: -100px 0 0 0;
  padding-left: 30px;
  padding-top: 125px;
  right: -100px;
  background: rgba(0,0,0,0.8);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 1px 0px 15px #000;
}

#menu a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

#menu a:hover {
    color:#516293;
}

#menu li
{
  padding: 10px 0;
  font-size: 19px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
}

