@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');


@font-face {
    font-family: "Rotunda";
    src: url('../font/TipoType - Rotunda-Regular.otf') format('otf'); /* Pfad zur WOFF2-Datei */
    /* Weitere Formate und Pfade hinzufügen, wenn vorhanden */
}

body {
  font-family: "Rotunda", sans-serif; /* Verwende die Schriftart "Rotunda" oder eine ähnliche serifenlose Schriftart als Fallback */
  color: var(--darkblue-1);
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /*background:url("background.jpg");*/
    background-color: #EFF8FA;
    color: #20364C;
}


.jss11 {
    fill: white;
}


header {
    position: relative;
    height: 74px;
    background-color: #008090;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /*color: white;*/
    /*box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);*/
}

#logout-btn {
    position: absolute;
    top: 14px;
    right: 50px;
    border: none;
    background-image: linear-gradient(#f5ba4b,#b3790e);
}

#logout-btn:hover {
    color: white;
    background-image: linear-gradient(#fbe1af,#b3790e);
    box-shadow: 0 0 2px #fbe1af;
}

.cards-outer {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 180px 120px 80px;
    grid-template-areas: "image" "text" "stats";
    border-radius: 15px;
    border-top-left-radius: 0px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    font-family: roboto;
    text-align: center;
    transition: 0.25s ease;
    cursor: pointer;
    margin:30px;
}

.card:hover {
  transform: scale(1.07);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
}

.card-text {
  grid-area: text;
}
.card-stats {
  grid-area: stats; 
}

.card-image {
  grid-area: image !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 15px !important;
  background-size: cover !important;
}

.card-text {
  grid-area: text;
  margin: 25px;
}
.card-text .date {
  color: rgb(255, 7, 110);
  font-size:13px;
}
.card-text p {
  color: rgb(95, 95, 95);
  font-size:15px;
  font-weight: 300;
}
.card-text h2 {
  margin-top:0px;
  margin-bottom: 16px;
  font-size:28px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    font-size: 20px;
    margin-bottom: 40px;
}

.btn.btn-lg.btn-primary.btn-block{
  color:white;
  background-color: #20364C;
  border-color: #20364C;
}

.btn.btn-lg.btn-primary.btn-block:hover, .btn.btn-lg.btn-primary.btn-block:active{
  color:white;
  background-color:#008090;
  border-color:#008090;
}

.container{
  width:500px;
  background-color: white;
  padding: 3% 2% 3% 2%;
  border-color: #008090;
  border-style: solid;
  margin-top: 10%;
}



#text_welcome{
  margin-bottom: 10%;
  margin-top: 0;
}

.header_logo{
  width: 290px; 
  height: 70px; 
  color: white; 
  margin-top: 5px; 
  margin-left: 32px;
}

.font_green{
  color: #060A1A;
}

.header_text{
  color: white;
  display: flex;
  margin: auto;
  font-weight: bold;
  font-size: xxx-large;
}

@media (max-width: 1500px) {
    .header_text {font-size: 2vw;} 
  }

#logo{
  height: 70px;
  margin-top: -131px;
  position: absolute;
}

p {
  margin: 0 !important;
}