@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap');
* {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

body {
    background-color: #cfe4ff;
    background-size: cover;
    background-repeat: no-repeat;
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0;
}

#condition {
    background-color: #e9e9e9;
    border-radius: 100%;
}

#main {
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background-color: #c7c7c7;
    padding:10px;
    border:1px solid #000;
    border-radius: 10px;

    display: flex;
    text-align: center;
    flex-direction: column;
}

#days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    border: 1px solid #000;
    border-radius: 10px;
}

.day {
    background-color: #9e9e9e;
    padding:5px;
    border:1px solid #000;
    border-radius: 10px;
}

#locationchanger {
    border-radius: 10px;
    border: 1px solid #000;
    font-size: 18px;
    padding: 5px;
}
button {
    border-radius: 10px;
    border: 1px solid #000;
    font-size: 18px;
    padding: 5px;
    cursor:pointer;

    transition-duration: 250ms;
}
button:hover {
    scale:1.05;
    rotate: 2.5deg;
}
dialog::backdrop{
    background-color: #0000006b;
}
dialog[open] {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: show 1s ease normal;
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}