@font-face {
    font-family: 'Satoshi';
    font-weight: 800;
    src: url('fonts/Satoshi-Variable.ttf') format('truetype');
}
@font-face {
    font-family: 'StalinistOne';
    font-weight: 600;
    src: url('fonts/StalinistOne-Regular.ttf') format('truetype');
}

.background {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    background: url(zeitung\ texture.png);
    background-color: #333333;
    background-size: 50%;
    min-height: 100vh;
    padding: 4vw;
    display: flex;
    justify-content: center;
    align-items: center, top;
}


.main-container {
    backdrop-filter: brightness(-5);
    background: radial-gradient(rgba(255, 255, 255, 0.144), rgba(255, 255, 255, 0.301));
    max-width: 150vw;
    height: 100%;
    width: 100%;
    padding: 2,5rem;
    border-radius: 50px;
    text-align: center;
    stroke: 0px 0px 15px;
    
}

.SelectionButton {
    font-family: "Special Elite", system-ui;
    transition: all .3s ease;
    margin-left: 7rem;
    margin-right: 7rem;
    margin-top: 5rem;
    padding-top: .25rem;
    scale: 3;
    background-image: url(zeitung\ texture.png);
    background-size: contain; 
    background-size: 5rem;
    border-radius: 15px;
    border-color: black;
    border-width: .02rem;
    margin-bottom: 50px;
    width: 6rem;
}

.SelectionButton:hover {
    transform: translateY(-2px) translateX(-2px);
    box-shadow: .2rem .2rem 0rem #000000a9;
}

.SelectionButton:active {
    scale: 2.5;
    box-shadow: 0px 0px .5rem;
}

h1 {
    font-size: 4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}



.main-container {
    animation: blurIn 2s ease;
}


@keyframes blurIn {
    0% {
        filter: blur(20px);
        transform: scale(3);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }
}

.reportbug {
    transition: all .3s ease;
    font-family: Special Elite;
    font-size: 2rem;
    padding-top: 0.5rem;
    background-image: url(zeitung\ texture.png);
    background-size: contain; 
    background-size: 5rem;
    border-radius: 15px;
    border-color: black;
    border-width: .2rem;
    border-radius: 15px;
    border-style: bold;
    height: 3.5rem;
    width: auto;
}

.footer {
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
    gap: 2rem;
    padding: 15px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100%; /* Statt 100vw */
    box-sizing: border-box;
}

.madeby {
    display: flex;
    gap: 5px;
}

.madeby p {
    margin: 0;
}


.reportbug:hover {
    transform: translateY(-2px) translateX(-2px);
    box-shadow: .4rem .4rem 0rem #000000a9;
}

.reportbug:active {
    scale: .9;
    box-shadow: 0px 0px .5rem;
    background-color: red;
}

h3 {
    margin-top: -3rem;
}

.nasa-widget {
    transition: all .3s ease;
    display: grid;
    border-radius: 20px;
    border-width: .2rem;
    border-color: black;
    border-style: solid; /* DAS FEHLT! */
    padding: 20px;
    background-image: url(zeitung\ texture.png);
    background-size: contain; 
    background-color: #ffffff;
    margin-right: auto;
    margin-left: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
    max-width: 500px;
    justify-items: stretch;
    align-content: space-evenly;
}

.apod-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.apod-info h4 {
    margin: 10px 0 5px 0;
    font-size: 1.4em;
}

.apod-date {
    font-size: 0.9em;
    margin: 0 0 10px 0;
}

.apod-explanation {
    font-size: 1.4em;
    line-height: 1.4;
}
.nasa-widget h3 {
    font-size: 1.4em;
    margin-top: 0;        /* Entfernt den negativen Margin */
    margin-bottom: 2.4rem;  /* Abstand nach unten */
    padding-top: 1.5rem;     /* Bisschen Abstand nach oben */
}

.nasa-widget:hover {
    box-shadow: .6rem .6rem 0rem #000000a9;
    transform: translateY(-.6rem) translateX(-.6rem);
}


