body {
    margin: 0;
    padding: 0;
    font-family: "Sen", sans-serif;
    box-sizing: border-box;
    background-color: rgb(255, 214, 99);
}

hr {
    width: 50%;
    border: 2px solid rgb(94, 166, 207);
    border-radius: 10px;
    margin: 0 20px;
}

h2 {
    text-align: center;
    color: white;
    margin: 0 ;
}
h3 {
    text-align: center;
    color: white;
    margin: 0;
}

/* .title {
    text-align: center;
} */
header {
    display: flex;
    justify-content: center;
}
.title {
    color: rgb(94, 166, 207);
}

.error {
    text-align: center;
    color: rgb(94, 166, 207);
    font-weight: 700;
}

#block {
    height: 100px;
}

.block-city {
    display: flex;
    justify-content: center;
}
.place {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px 0;
}

.inp-search {
    background-color: rgb(248, 223, 155);
    margin-right: 10px;
    font-size: 14px;
    width: 150px;
    border: 3px solid rgb(94, 166, 207);
    border-radius: 5px;
    padding: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.inp-search:focus {
    outline: rgb(132, 187, 219) solid 2px;
}

.btn-search {
    width: 70px;
    background-color: rgb(94, 166, 207);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-search:hover {
    background-color: rgb(94, 141, 170);
}

.btn-delete {
    width: 70px;
    height: 35px;
    background-color: rgb(94, 166, 207);
    border: none;
    border-radius: 5px;
    outline: none;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-delete:hover {
    background-color: rgb(70, 144, 187);
    outline: none;
}

.widget {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
    padding: 5px;
    border: 3px solid rgb(94, 141, 170);
    border-radius: 10px;
    background: url(../img/photo-1563518839049-f44a5e423f12.jpg);
    background-repeat: no-repeat;
    object-fit: scale-down;
}

.card p {
    color: white;
}

.tempcelsius {
    color: white;
    margin: 0 0 19px 0;
    font-size: 2em;
}

.description {
    text-align: center;
    color: white;
}

.spinner-container {
    display: flex;
    justify-content: center;
}

.spinner:not([hidden]) {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.spinner:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin: 8px;
    border-radius: 50%;
    border: 4px solid cornflowerblue;
    border-color: cornflowerblue;
    animation: spinner 1.2s linear infinite;
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
