*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    background: linear-gradient(to bottom, rgba(2,0,36,.8) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}

.main{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main h1{
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
}

input{
    width: 70%;
    height: 40px;
    margin-bottom: .5em;
    padding-left: 1em;
    font-size: 1.2rem;
}


.date{
    margin-bottom: 1em;
    margin-top: 1em;
}

.main p{
    text-align: center;
    margin-bottom: 1em;
}

.temp{
    position: relative;
    cursor: pointer;
}

.main__region{
    font-size: 1.3rem;
}

.main__temperature{
    font-size: 1.3rem;
}

span{
    position: absolute;
    color: red;
    top: -5px;
    right: -15px;
}

.main__weather__description{
    font-size: 1.2rem;
}

button{
    padding: .2em .5em;
    margin-bottom: .5em;
    font-size: 1.2rem;
    font-weight: bold;
}
