.mobile-display {
  display: none;
}
.desktop-display {
  display: block;
}

body {
  background-color: black;
  font-family: 'ubuntu', sans-serif;
  font-weight: 300;
  width: 100vw;
  min-height: 100vh;
  color: white;
}

.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding: 0.7rem 5rem;
  background-color: #0b0b11;
}

.offen {
  padding-left: 2rem;
}

.header img {
  height: 90px;
  margin: left 50px;;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 100px;
}

nav ul {
  display: flex;
}
nav ul li {
  list-style: none;
  margin: 5px;
  padding: 0 10px;
  border-left: 1px solid black;
  border-right: 1px solid black;
  transition: 0.3s;
}
nav ul li:hover{
  border-left: 1px solid white;
  border-right: 1px solid white;
}
nav ul li a {
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
}

/* topHeadlines links */
.topHeadlines {
  padding: 100px 50px 50px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.topHeadlines .left {
  padding: 0px 30px 10px 10px;
}
.topHeadlines .left .title {
  font-size: 1.2rem;
  text-align: left;
}
.topHeadlines .left .img{
  width: 100%;
  height: auto;
}
.topHeadlines .left .text{
  padding: 10px 0px 10px 10px;
}
.topHeadlines .left .text .title h2{
  font-size: 1.2rem;
  display: inline;
  cursor: pointer;
}
.description{
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
}

/* topHeadlines rechts */
.topHeadlines .right {
  padding-top: 5%;
  width: 100%;
  height: 500px;
}
.topHeadlines .right > .title{
  font-size: 16px;
  padding-bottom: 1.5rem;
  text-align: left;
  display: inline;
}
.topHeadlines .right .topNews {
  padding: 7px;
  height: 85%;
  border: 1px solid #fff;
  border-radius: 4px;
  overflow-y: scroll;
}
.topHeadlines .right .topNews .news {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  margin-bottom: 20px;
}
.topHeadlines .right .topNews .news .img {
  width: 170px;
  height: 120px;
  background-color: #a04;
}
.topHeadlines .right .topNews .news .text {
  margin-inline: 10px;
}
.topHeadlines .right .topNews .news .text .title {
  cursor: pointer;
}
.topHeadlines .right .topNews .news .text .title:hover {
  text-decoration: underline;
}

/* S2 Newsartikel */
.newsarticle {
  width: 100%;
  background-color: #16161d;
  min-height: 100%;
  padding: 10px 10px 10px 80px;
}
.newsarticle .news {
  padding: 30px 0;
}
.newsarticle .news > .title .h2{
  font-size: 40px;
  cursor: pointer;
  display: inline;
}
.newsarticle .news .newsBox {
  width: 100%;
  background-color: #999;
  margin-top: 20px;
  display: flex;
}
.newsarticle .news .newsBox .newsCard {
  width: calc(100% / 5 - 20px);
  margin: 10px;
  background-color: #070;
}
.newsarticle .news .newsBox .newsCard .img {
  width: 100%;
  height: auto;
  background-color: #a04;
}
.newsarticle .news .newsBox .newsCard .text {
  padding: 10px;
}
.newsarticle .news .newsBox .newsCard .text .title p{
  font-size: 15px;
  display: inline;
  cursor: pointer;
}

footer p {
  text-align: center;
  padding: 50px;
}
footer a {
  color: #ffffff;
}