* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.8)),
        url(/assets/images/hot.png) no-repeat center/cover;
}

#container {
    width: 350px;
    border-radius: 10px;
    padding: 30px 20px;
    background: url(/assets/images/hot.png) no-repeat center/cover;
}

.search {
    width: 100%;
    padding: 10px 20px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 15px 0 15px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    font-size: 16px;
}

.search:focus {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px 0 15px 0;
}

.content {
    margin: 40px 0;
    color: #fff;
    text-align: center;
}

.address {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.time {
    margin: 20px 0;
    font-size: 16px;
}

.temperature {
    font-size: 60px;
    font-weight: 800;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.7);
    border: none;
    margin: 0 30px;
}

.short-desc {
    font-size: 40px;
    font-weight: 600;
    margin: 50px 0;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.7);
}

.more-desc{
    display: flex;
    justify-content: space-between;
}

.more-desc div {
    display: flex;
    flex-direction: column;
}

.more-desc div i {
    margin: 10px 0;
}
