* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    background: linear-gradient(rgb(38, 75, 117), rgb(216, 230, 235));
}

.app-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px;
}

header input {
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0px 7px 0px 7px;
    border-bottom: 2px solid rgb(143, 69, 143);
    color: #313131;
    font-size: 20px;
    font-weight: 300;
    transition: 0.2s ease-out;
}

header input:focus {
    background-color: rgba(255, 255, 255, 0.6);
}

main {
    flex: 1 1 100%;
    padding: 25px 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.location .city {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.location .date {
    font-size: 16px;
}

.current .temp {
    font-size: 102px;
    font-weight: 900;
    margin: 30px 0px;
    text-shadow: 2px 4.5px rgba(0, 0, 0, 0.3);
}

.current .temp span {
    font-weight: 500;
}

.current .weather {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 1px 2px rgba(0, 0, 0, 0.4);
}

.current .hi-low {
    font-size: 24px;
    font-weight: 500;
    text-shadow: 1px 2px rgba(0, 0, 0, 0.4);
} 