* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    font-size: 14px; /* Basis Schriftgröße */
}

body {
    background-color: #4688c5;

}

.container {
    position: absolute;
    top: 4%;
    left: 3%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.standortbox, .temperaturbox, .längeundbreite, .wetterzustandbox, .containerwind, .gefühltetempbox, .containerright {
    font-size: 2rem;
    background-color: transparent;
    color: black;
}

.containerleft {
    border: black 2px solid;
    padding: 15px;
    border-radius: 25px;
}



.containerleft {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 15%;
    top: 10%;
}

#icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;

}


.untercontainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerright {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 3%;
    top: 30%;
    padding: 5px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.containerwind {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 3%;
    top: 60%;
    padding: 5px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.übercontainer {
    position: absolute;
    padding: 15px;
    font-size: 2rem;
    top: 65%;
    right: 20%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.vohersagecontainer {
    display: flex;
    gap: 15px;
   
}

.überschrift {
    background-color: none;
    text-align: center;
}

.tag {
    padding: 5px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease; /* Übergänge hinzufügen */
}

.tag:hover {
    background-color: #f2f2f2;
    border-radius: 10px;
    transform: scale(1.1);
}

.wochentag0, .wochentag1, .wochentag2, .wochentag3, .wochentag4, .wochentag5, .wochentag6 {
    min-width: 58px;
    padding: 5px;
    border-radius: 40px;
    border: 3px solid black;
    text-align: center;
    background-color: #4688c5;
}



.datum0, .datum1, .datum3, .datum4, .datum5, .datum6, .datum7 {
    border: none;
}