body {
    background-color: black;
    margin: 0;
    padding: 0;
    background-size: cover;
}

a {
    color: inherit;
    text-decoration: none
}

#loadingParent {
    top: 0;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    z-index: 10;
    background-color: black;
}

#loadingChild {
    color: white;
    font-family: sans-serif;
    font-size: 32px;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}
#container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: auto;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    transition: opacity .2s linear 0s;
    user-select: none;
}

#content {
    padding: 10px;
    /*border: 2px solid white;*/
    transition: transform .5s linear 0s;
    position: relative;
}

#front {
}

#back {
    display: none;
    transform: rotateY(180deg);
    color: white;
    justify-content: center;
    align-items: center;
    position: relative;
}

#links {
    position: absolute;
    left: 100%;
    top: 0;
    padding: 10px;
}

#contentHead {
    display: flex;
    border-bottom: 2px solid white;
}

#contentBody {
    padding-top: 10px;
}

#backBtn {
    top: 0;
    left: 0;
    position: absolute;
    margin: 0;
}

#newsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#newsBox {
    top: 10px;
    position: absolute;
    background-color: rgb(134, 244, 66);
    color: white;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    font-family: sans-serif;
    font-weight: 600;
    opacity: .8;
}
#newsBox:hover {
    -webkit-animation: hovering .25s linear;
    opacity: 1;
}

@-webkit-keyframes hovering {
    0%   {font-size: 24px;
          opacity: .8;}
    20%  {font-size: 32px;}
    100% {font-size: 24px;
          opacity: 1}
}

.repos {
    font-family: sans-serif;
    border-left: 2px solid #a772d8;
    color: white;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
    transition: background-color .15s ease-out 0s, color .15s ease-out 0s;
}

.repos:hover {
    background-color: rgba(255,255,255,.4);
    color: black;
}

.text {
    font-family: sans-serif;
    color: white;
}

.btn {
    padding: 10px;
    display: inline-block;
    /*border: 2px solid white;*/
    color: white;
    font-family: sans-serif;
    cursor: pointer;
    margin: auto;
    margin-top: 10px;
    transition: background-color .1s linear 0s, color .2s linear 0s;
}

.btn:hover {
    background-color: rgba(255,255,255,.4);
    color: black
}

.backContent {
    color: white;
    font-family: sans-serif;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    font-size: 24px;
}
