body, html{
    margin: 0;
    height: 100%;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.ctn {
    position: relative;
    text-align: center;
    color: rgb(223, 38, 1);
  }

.bg{
    background-image: url(img/BG.png)  no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    opacity: 0.8;
}

.text{
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 50px;
    font-weight: 500;
}

.input-container {
    position: absolute;
    top: 100px;  /* Passe diesen Wert nach Bedarf an */
    left: 20px;
    border-radius: 25px;
}

#postcode {
    padding: 10px;
    font-size: 16px;
    border-radius: 25px;
    border-style: none;
    background-color: white;
    opacity: 0.8;
}

#getWeather {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    border-style: none;
    background-color: white;
    opacity: 0.8;
}

#weatherData {
    position: absolute;
    top: 150px;  /* Passe diesen Wert nach Bedarf an */
    left: 20px;
    color: black;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .text {
        font-size: 5vw;
    }

    .input-container {
        top: 150px; /* Anpassung der vertikalen Position für kleinere Bildschirme */
    }

    #postcode {
        width: 80%;
    }
}