*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url("images/sun.jpg");
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    background-repeat: no-repeat;
    background-position: top center;
}

.app-main{
    width: 60vh;
    margin: 100px auto;
    background-color: rgba(240, 248, 255, 0.6);
    padding: 20px;
    text-align: center;
}

.app-main > *{
    margin-bottom: 20px;
}

.input-box{
    width: 100%;
    background-color: rgba(255,255,255,0.6);
    height: 50px;
    text-align: center;
    padding: 0 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #582233;
    font-size: 1.3rem;
}

.input-box:focus{
    background-color: rgba(255,255,255);
}

.weather-body{
    display: none;
    color: #582233;
    padding: 20px;
    line-height: 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255,0.6);
    height: 50vh;
}

.location-details{
    font-weight: bold;
}

.weather-status{
    padding: 20px;
}

.temp{
    font-size: 50pt;
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 2px 4px rgba(0, 0, 0, 0.3);
}

.min-max, .weather{
    font-size: 12pt;
    font-weight: 600;
}

.author{
    font-size: 10px;
    text-align: center end;
}