body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    background-color: #121111;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    background-color: rgba(59, 59, 59, 0.5);
    border-radius: 10px;
    box-shadow: 0 2px 5px 5px rgba(250, 250, 250, 0.1);
    z-index: 10;
    position: relative;
}

form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#city {
    width: 75%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    margin-right: 10px;
}

button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.weather-card {
    background-color: #121111;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.weather-card h2 {
    margin: 0;
    font-size: 2.5em;
}

.weather-card p {
    font-size: 1.1em;
}

#type {
    height: 30px;
    width: 160px;
    padding: 8px 5px;
    background-color: #201f1f;
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
    margin: 20px auto;
}

.weather-card .temperature {
    font-size: 3.5em;
    margin: 10px 0;
}

.weather-card .weather-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 15px;
    font-weight: 500;
}

.weather-box {
    text-align: center;
    background-color: #333;
    padding: 10px;
    border-radius: 10px;
    width: 45%;
    margin-bottom: 10px;
}

.weather-box p {
    margin: 5px 0;
}

.weather-image {
    width: 90px;
    height: 90px;
    display: block;
    margin: 20px auto;
}

.weather-icon {
    width: 120px;
    height: 120px;
}

.info-icon {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-right: 5px;
    filter: invert(100%) sepia(0%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(300%);
}
