html, body {
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    overflow-x: hidden;
    font-weight: normal;
    word-wrap: break-word;
}

body {
    display: flex;
    flex-direction: column;
}


* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

*, *:before, *:after {
    box-sizing: inherit;
}


.home-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #FFFEF6;
    padding: 1em;
}

h1 {
    color: #F52A00;
    margin: 1em 0;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

p {
    color: #3F2C48;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 1em;
}

p.small {
    font-size: 0.8em;
}

.confirm-button {
    padding: 1em 2em;
    background: #F57100;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 900;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: .5s;
    width: 100%;
    margin: 1em 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}

.task-button {
    padding: 0.5em;
    background: #00aec8;
}

.confirm-button:hover {
    background: #f52a00;
}

.task-button:hover {
    background: #523b5d;
}
