body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.1;
    color: black;
    background-color: white;
    transition: all 0.25s ease-in-out;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#root {
    top: 0;
    left: 0;
    transition: all 0.1s linear;
}

.invert {
    background-color: black;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.vertical-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.container {
    box-shadow: 0px 0px 20px 4px rgba(0,0,0,0.1);
    max-width: 90%;
    padding: 20px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    pointer-events: all;
}

img {
    cursor: pointer;
    display: block;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

p {
    margin: 0;
}

a {
    color: #00A651;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
