@font-face {
    font-family: "vazir";
    src: url(/fonts/Vazir-Medium.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "vazir";
    src: url(/fonts/Vazir-Bold.ttf);
    font-weight: 700;
}
body {
    font-family: "vazir";
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-card {
    box-shadow: 0 0 20px 2px #ddd;
    width: 260px;
    height: 400px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.weather-card::before {
    content: '';
    background-color: #000;
    height: 150px;
    width: 100%;
    top: 0;
    position: absolute;
    border-radius: 10px 10px 2px 2px;
}
.weather-card-body{
    text-align: center;
}
.weather-card-footer {
    position: absolute;
    height: 50px;
    bottom: 0;
    background-color:burlywood;
    width: 100%;
    border-radius: 2px 2px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
}

#citySelection {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    border: solid 1px #ccc;
    border-radius: 2px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    margin-top: 20px;
}

.temp{
    margin: 0;
    font-size: 30px;
    text-align: center;
}
.city_mame {
    font-size: 30px;   
    margin-bottom: 0;
    margin-top: 40px;
}
.icon{
    z-index: 1001;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}