*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: "Tagesschrift", system-ui;
    font-weight: 400;
    font-style: normal;

}

body{
    background: url("https://media.istockphoto.com/id/516351793/photo/majestic-storm-clouds.jpg?s=612x612&w=0&k=20&c=jJmcqJVMhjJjntlibEE287ZYE9dG9Jl-DraUk9VcCWI=");
    background-size: cover;
    background-repeat: no-repeat;
}
.container{
    margin: 50px auto;
    padding: 10px 15px;
    width: 800px;
    height: auto;
    line-height: 1.5;
    text-align: center;
    background: transparent;
    border: 5px solid linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
    border-radius: 20px;
    box-shadow: 40px 40px 40px 40px rgba(0, 0, 0, 50%);
}
.title{
    font-size: 150px;
    margin-bottom: 20px;
    margin-top: 20px;
}
input[type="search"]{
    padding: 20px;
    font-size: 30px;
    background: transparent;
    border-radius: 10px;
    margin-right: 20px;
    width: 500px;
}
#search-button{
    padding: 20px 10px;
    font-size: 30px;
    background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
    border: none;
    border-radius: 25px;
    width: 200px;
    cursor: pointer;
}
#temperature{
    margin: 10px;
    font-size: 100px;
}

#temperature span{
    font-size: 100px;
    color: red;
    font-weight: bold;
}

#city{
    margin: 10px;
    font-size: 70px;
}

#icon{
    height: auto;
    width: 100px;
    margin: 10px;
    padding: 20px;
    display: block;
    margin: 0 auto;
}
.weather-icon{
    height: 300px;
    width: 300px;
    align-items: center;
}

.container .weather{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
