* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    outline: none;
}

.wrapp-bg {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(132, 214, 132);
}

.main-block {
    position: relative;
    width: 356px;
    height: 620px;
    border-radius: 10px;
    font-size: 24px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    box-shadow: 2px 2px 4px black;
}

.container {
    width: 324px;
    margin: auto;
}

.wrapper-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    font-size: 24px;
}

.city {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.weather-degrees {
    font-size: 72px;
}

.weather-feel {
    font-size: 24px;
}

.day-block {
    margin-bottom: 60px;
}

.day-greeting {
    font-size: 24px;
    text-transform: lowercase;
}

.day-week {
    font-size: 48px;
    text-transform: uppercase;
}

.setting-window{
    position: absolute;
    width: 100%;
    top: 15px;
    left: -370px;
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.setting-window input {
    width: 150px;
    height: 25px;
    margin-right: 10px;
    padding: 0;
}

.setting-window button {
    height: 25px;
    width: 80px;
    cursor: pointer;
}

.show-modal {
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}

.show-modal span {
    display: block;
    width: 20px;
    height: 4px;
    background-color: #000;
    border-radius: 50px;
}