html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    color: #333;
    background: linear-gradient(to bottom, #F5F1EC, #fbf9f8);
    background-attachment: fixed;
}

a {
    text-decoration: none;
}

input {
    color: #555;
    font-weight: lighter;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1000px;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 10px;
}

.btn {
    color: white;
    background-color: #444;
    border-radius: 3px;
    font-size: 0.95rem;
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}
.btn:hover {
    background-color: #333;
}