body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
}

.header-container {
    background: #95C7E1FF;
    color: black;
    padding: 20px;
    display: flex;
}

.header {
    max-width: 80%;
    background-color: whitesmoke;
    padding: 10px 15px;
    border-style: solid;
    border-radius: 5px;
}

.search-city{
    background-color: whitesmoke;
    padding: 10px 15px;
    border-style: solid;
    border-radius: 5px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.temperature-section {
    border-style: solid;
    background: #95C7E1FF;
    color: #051009;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
}

.section-title {
    color: #100506;
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.current-location {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.locations-section{
    border-style: solid;
    background: #95C7E1FF;
    color: #051009;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.like-content:hover{
    cursor: pointer;
}

.search-city:hover{
    cursor: pointer;
}

.temperature{
    display: flex;
    font-variant-caps: all-small-caps;
    font-size: 30px;
}

.like-content{
    text-align: right;
    border-style: none;
    background-color: #43b8e2;
    margin-top: 50px;
    margin-left: 200px;
}

.divader{
    width: 90%;
    height: 2px;
    background-color: #051009;
    margin: auto;
}

.weather-city{
    font-variant-caps: all-small-caps;
}

.weather-img{
    margin-top: -70px;
    margin-left: 150px;
}

.location-container {
    color: black;
    margin: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-style: solid;
    border-radius: 45px;
    border-color: #fdbb2d;
    background-color: #43b8e2;
    padding: 10px 20px;
}

.dislike-btn {
    border-radius: 15px;
    background-color: #43b8e2;
    border-style: dashed;
    margin-left: auto;
    order: 2;
}

.location-tag {
    order: 1;
    margin-right: auto;
}

.location-tag:hover, .dislike-btn:hover{
    cursor: pointer;
}

.translate-in-farenheit, .translate-in-cilsius{
    border-style: solid;
    border-radius: 15px;
    margin-left: 50px;
}

.translate-in-farenheit, .translate-in-cilsius:hover{
    cursor: pointer;
}

.general-text {
    background: #95C7E1FF;
    font-size: 25px;
    font-style: italic;
    color: #5a0189;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sunrise {
    font-size: 15px;
    color: #100506;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-style: italic;
    font-variant: all-small-caps;
}

.sunset  {
    font-size: 15px;
    color: #100506;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-style: italic;
    font-variant: all-small-caps;
}

.feels-like {
    font-size: 15px;
    color: #100506;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-variant: all-small-caps;
    font-style: italic;
}

.next-date, .next-temperature, .next-feels-like{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.block-next-weather {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-evenly;
    align-items: flex-end;
    background-color: #43b8e2;
    border-color: #fdbb2d;
    border-style: solid;
    border-radius: 45px;
    padding: 20px;
}

.block-current-weather{
    background-color: #43b8e2;
    border-color: #fdbb2d;
    border-style: solid;
    border-radius: 45px;
    padding: 20px;
}
