body{
    font-family: sans-serif;
    background-color: hsl(0, 0%, 95%);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.weatherform{
    width: 100%;
    height: 50px;
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
}

input{
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 20px;
    box-shadow: 0px 0px 5px;
}

.submitbutton{
    margin-left: 10px;
    padding: 5px;
    background-color: white;
    box-shadow: 0px 0px 5px;
    border: none;
    border-radius: 05px;
}

img{
    width: 90px;
    height: 90px;
}

.welcome{
    width: 75%;
    background-color: hsl(120, 72%, 76%);
    overflow: hidden;
    height: fit-content;
    padding-bottom: 20px;
    position: relative;
    font-size: 0.9rem;
    left: 0;
    right: 0;
    margin: 0px, auto;
    text-align: center;
    border-radius: 20px;
    margin-top: 10%;
}

.weathercard{
    width: 75%;
    background-color: hsl(120, 72%, 76%);
    overflow: hidden;
    height: fit-content;
    padding-bottom: 20px;
    display: none;
    position: relative;
    left: 0;
    right: 0;
    margin: 0px, auto;
    text-align: center;
    border-radius: 20px;
    margin-top: 10%;
}

#city{
    padding: 0;
    margin: 0;
    margin-top: 5%;
}

#date{
    padding: 0;
    margin: 0;
    color: rgb(92, 92, 92);
}

#tempareture{
    padding: 0;
    margin: 0;
    font-size: 5em;
}

.buttonav{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 7%;
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

a{
    margin-left: 3px;
    color: rgb(195, 255, 195);
}

.loading-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 50vh;
}


.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid green;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}