* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat", sans-serif;
}

body {
    background: #eee;
    padding: 0 16px;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

header {
    background-color: #48a4f0;
    margin: auto -16px;
    padding: 16px 32px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

header h1 {
    color: #fff;
    font-family: "McLaren", cursive;
    font-weight: 200;
}

h1 {
    color: #48a4f0;
    font-family: "McLaren", cursive;
    font-weight: 200;
}

.greet {
    text-align: center;
    padding-top: 1%;
    color: #48a4f0;
    font-family: "McLaren", cursive;
    font-weight: 200;
}

.question {
    text-align: center;
    color: #48a4f0;
    font-family: "McLaren", cursive;
    font-weight: 200;
}

footer {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
}

footer p {
    color: #ccc;
}

.note {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 5px #ccc;
    padding: 10px;
    width: 240px;
    margin: 16px;
    float: left;
}

.note h1 {
    font-size: 1.1em;
    margin-bottom: 6px;
}

.note p {
    font-size: 1.1em;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.note button {
    position: relative;
    float: right;
    margin-right: 10px;
    color: #48a4f0;
    border: none;
    width: auto;
    height: auto;
    cursor: pointer;
    outline: none;
    background-color: white;
}

form {
    position: relative;
    width: 480px;
    margin: 30px auto 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0 1px 5px rgb(138, 137, 137);
}

form input,
form textarea {
    width: 100%;
    border: none;
    padding: 4px;
    outline: none;
    font-size: 1.2em;
    font-family: inherit;
    resize: none;
}

form button {
    position: absolute;
    right: 18px;
    bottom: -18px;
    background: #48a4f0;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
}

.container {
    margin: 10% auto;
    padding: 80px 0;
    text-align: center;
}

.container h1 {
    font-size: 40px;
    font-weight: 200;
}

.container form {
    padding: 20px 0;
    position: relative;
}

.container form input {
    border: 1px solid #48a4f0;
    background-color: #48a4f010;
    width: 250px;
    border-radius: 3px;
    font-family: "Source Sans Pro", sans-serif;
    padding: 10px 15px;
    margin: 0 auto 10px auto;
    display: block;
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 300;
}

.container form button {
    appearance: none;
    outline: 0;
    background-color: white;
    border: 0;
    padding: 10px 15px;
    color: #48a4f0;
    border-radius: 3px;
    width: 250px;
    font-size: 18px;
    position: static;
}

.weather input {
    border: 1px solid #48a4f0;
    background-color: #48a4f010;
    width: 150px;
    border-radius: 3px;
    font-family: "Source Sans Pro", sans-serif;
    padding: 10px 15px;
    margin: 0 auto 10px auto;
    display: block;
    text-align: center;
    font-size: 13px;
    color: #000;
    font-weight: 300;
    margin-top: 10px;
}

.weather button {
    appearance: none;
    outline: 0;
    background-color: white;
    border: 0;
    padding: 10px 15px;
    color: #48a4f0;
    border-radius: 3px;
    width: 100px;
    font-size: 13px;
    position: static;
}