@font-face {
    font-family: 'LethalFont';
    src: url('../../folder/3270-Regular.ttf') format('truetype');
}
html{
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:url('../../video/moons/LethalMoonGif.gif'); /* neues video hinzufügen*/
    background-size: cover;
    opacity: 0.5;
    z-index: -1; 
}
body{
    position: sticky;
    margin: 0;
    padding: 0;
    background-color: black;
}
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10% 5px 0;
    background-color: rgb(193, 33, 33);
}
header nav a {
    font-family: LethalFont;
    font-size: 40px;
    color: black;
    text-decoration: none;
}
.lethallogo {
    cursor: pointer;
    width: 160px;
    height: 65px;
    padding: 0;
    margin-left: 2%;
    padding-left: 1em;
}
.navigation__bar__links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.navigation__bar__links li + li {
    border-left: 5px solid black;
    padding-left: 20px;
}
.navigation__bar__links a:hover {
    color: rgb(193, 33, 33);
    background-color: black;
}


/* Weather Selector */

.weather__container{
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 20px;
    width: 60%;
    margin: 0 auto;
}
.weather__container__option{
    border: 2px solid black;
    position: relative;
}
.weather__container__option:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.weather__container__text{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    Font-family: LethalFont;
    font-size: 1.5em;
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 4px black;
    z-index: 1;
}
.weather__container__image{
    width: 100%;
    height: 100%;
}


/* Weather Info Box */
.weather__main__title{
    font-size: 3.5em;
    color: white;
    font-family: LethalFont;
}

.weather__info__mainbox{
    background-color: rgba(10, 2, 2, 0.9);
    border: 5px double rgb(193, 33, 33);
    margin: 2em 5% 2em 5%;
    padding: 2em;
    opacity: 0.95;
}

.weather__info__containerbox{
    position: relative;
    background-color: transparent;
    border: none;
    padding: 1.5em 1em;
    margin: 0 0 2em 0;
    opacity: 1;
}

.weather__info__containerbox:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.weather__info__container{
    display: grid;
    grid-template-areas:
        "title title"
        "description image";
    grid-template-columns: 70% 30%;
    grid-template-rows: auto auto;
    color: white;
    gap: 20px;
}

.weather__info__title{
    grid-area: title;
    font-size: 2em;
    border-bottom: 3px solid white;
    font-family: LethalFont;
}

.weather__info__description{
    grid-area: description;
    font-size: 1.2em;
    line-height: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    vertical-align: top;
    margin: 0;
}

.weather__info__image{
    grid-area: image;
    width: 100%;
    height: auto;
    border: 2px solid rgb(193, 33, 33);
}

/* Dropdown*/
.weather__dropdown{
    position: relative;
    color: #01FB01;
}
.weather__dropdown__img{
    display: none;
    position: absolute;
    max-width: 30em;
    z-index: 4;
    top: 25px;
    padding:5px;
    left: 0;
    background-color: rgba(10, 2, 2, 0.95);
    border: 2px solid rgb(193, 33, 33);
    
}
.weather__dropdown:hover .weather__dropdown__img {
    display: block;
}