html {
    overflow-x: hidden;
}

body {
    background: rgba(45,62,79,1);
    font-family: Fira Sans;
    height: 100vh;
    display: flex;
}

.particle {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100vh;
}

.content {
    z-index: 1;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -50px;
    max-width: 400px;
    text-align: center;
}

.button {
    font-size: 14pt;
    color: #ffffff;
    font-weight: 300;
    padding: 5pt 20pt 5pt;
    border-radius: 30px;
    border-style: none;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 20px;
    width: auto;
    display: inline-block;
    text-decoration: none;
}

.button:hover {
    transition: all 0.8s;
    padding-left: 40px;
    padding-right: 40px;
}

.green-button {
    background-color: #9aca3c;
}

.green-button:hover {
    background-color: #000;
}

.content a {
    color: #fff;
    text-decoration: none;
    font-size: 10pt;
    font-weight: 300;
    padding: 5px 15px;
    border-radius: 12px;
    transition: all 500ms;
    background-color: #ff6000;
}

.content a:hover {
    background-color: #526C85;
    color: #fff;
}

.content h1 {
    color: #fff;
    font-size: 11pt;
    font-weight: 300;
    margin-bottom: 30px;
    margin-top: 20px;
}