html, body {
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}

/**
 * Home page
 */
#container {
    flex: 1;
    min-height: 60vh;
    margin-top: 0;
}

h1#container-title {
    font-size: 96px;
    line-height: 1;
    margin: 0 0 60px;
    font-weight: bold;
}

button#start-button {
    margin-top: 20px;
    width: 200px;
    height: 54px;
    background-color: #741ff5;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    border-radius: 50px;
    border: none;
    color: #fff;
}

/**
 * Navigation
 */
li#navigation a.nav-link {
    padding-top: 12px;
    width: 200px;
    height: 54px;
    background-color: #741ff5;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    text-align: center;
    border-radius: 50px;
}

/**
 * Step one
 */
img#signin-hero {
    width: 100%;
}

div#file-upload-form-container {
    padding: 5%;
}

button#file-upload {
    width: 200px;
    height: 54px;
    background-color: #741ff5;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    text-align: center;
    border-radius: 50px;
    border: none;
    color: #fff;
}

div#form-group-one {
    margin-bottom: 2%;
}

div#form-group-one input#file {
    height: 40px;
}

div#form-group-two p#error {
    display: none;
}

div#form-group-three {
    text-align: right;
}

/**
 * Step two
 */
h1#container-title-small {
    font-size: 76px;
    line-height: 1;
    margin: 0 0 60px;
    font-weight: bold;
}

div#loader-container {
    display: flex;
    justify-content: space-around;
}

/**
 * Step success
 */
div#success-container-left {
    padding: 5%;
}

button#download {
    margin-left: 3%;
    width: 200px;
    height: 54px;
    background-color: #741ff5;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    text-align: center;
    border-radius: 50px;
    border: none;
    color: #fff;
}

div#success-container-left img {
    width: 100%;
}

div#success-container-right img {
    width: 100%;
}

/**
 * Footer
 */
div.container#footer-container {
    margin-top: 5%;
}
