* {
    margin: 0;
    padding: 0;
}

body {
    color: #c2c7d0;
    background-color: #343a40;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.header,
.temperature-details,
.sunset-sunrise {
    max-width: 600px;
    margin: 0 auto;
}

.header {
    padding: 2px 5px;
}

.header__city-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.header__input {
    border: none;
    width: 65   %;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    appearance: none;
    margin-right: -15px;
    vertical-align: super;
}

.header__button {
    cursor: pointer;
    margin-left: 20px;
    min-width: 45px;
    min-height: 45px;
    border: none;
    border-radius: 100%;
    color: #c2c7d0;
    background-color: #343a40;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.header__button:hover{
    filter: brightness(1.25);
}

.header__current-date,
.header__city-name {
    font-family: 'Ubuntu', sans-serif;
}

.header__current-date {
    color: #a2a2be;
    font-size: 14px;
    margin-top: 5px;
}

.header__city-name {
    font-weight: 500;
    font-size: 20px;
    margin-top: 6px;
}

.current-temperature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.current-temperature__weather-icon {
    width: 30px;
    margin-top: 5px;
}

.current-temperature__description:first-letter {
    text-transform: uppercase;
}

.current-temperature__description {
    /*color: #4b545c;*/
    color: #c2c7d0;
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
}

.current-temperature__info-label {
    margin-top: 15px;
    color: #a2a2be;
}

.current-temperature__current-temperature {
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
}

.bottom-container {
    /*background: #fff;*/
    color: #c2c7d0;
    background: #343a40;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 15px 15px 0 0;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.temperature-details {
    display: flex;
    margin-top: 5px;
}

.temperature-details__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #a2a2be;
    color: #c2c7d0;
    background: #343a40;
}

.temperature-details__item:last-child {
    border: none;
}

.temperature-details__label {
    color: #a2a2be;
}

.temperature-details__value,
.sunset-sunrise__value {
    font-weight: 500;
    margin-top: 5px;
}

.sunset-sunrise {
    display: flex;
    margin: 5px auto;
}

.sunset-sunrise__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__city-search-bar {
    display: none;
}