body{
    background-color: #000000;
}

svg{
    border-radius: 5px;
    fill: #1ED45F;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

svg path{
    transition: fill 0.5s ease-in-out, opacity 1s ease-in-out, transform 1s ease-in-out;
    fill:#3d3d3d; /*878787*/
}

svg path:hover{
    fill: #1ED45F;
}

h1, h2{
    color: white;
    margin: 0px 0px 5px 0px;
}

h2{
    display: none;
}

#content{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


#items{
    display: none;
    flex-direction: column;
    align-items: center;
}

input{
    background-color: #292A2D;
    font-size: 14px;
    padding: 4px;
    border-radius: 5px;
    color: white;
    border: 0px;
}

button{
    font-size: 14px;
    padding: 4px;
    color: white;
    background-color: #292A2D;  
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}

form{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

p{
    color: white;
    text-align: center;
    margin: 0px;
    display: none;
}

#formClimate{
    padding: 10px;
    margin: 20px 20px 10px 20px;
    background-color: #232323;
    border-radius: 5px;
}