body {
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
}

footer {
    min-height: 60px;
    width: 100%;
    font-size: 0.8rem;
    background-color: #3c4bff;
    color: white;
    bottom: 0;
    position: absolute;
}

footer .copyright {
    opacity: 0.5;
}

footer a {
    color: white;
}
footer a:hover {
    color: white;
    text-decoration-style: solid;
}

body:before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    background-image: radial-gradient(#ffffff 5%, #3c4bff 5%);
    background-position: 0 0;
    background-size: 35px 35px,100px 78px;
    height: 70%;
    top: 0;
    left: 0;
    z-index: -9;
}

.main-content {
    display: grid;
}
.main-content:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 24%;
    height: 24%;
    background: url('/charter/base/rose_circle.svg');
    background-position: 80px -100px;
    background-repeat: no-repeat;
    z-index: -7;
    overflow: hidden;
}
.main-content:after {
    content: "";
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 21%;
    height: 90%;
    background: url('/charter/base/green_arrow.svg');
    background-position: 0 200px;
    background-repeat: no-repeat;
    z-index: -8;
    overflow: hidden;
}

.page-content-container {
    padding: 10vh 10%;
    width: 100%;
    height: 100%;
}
.page-content {
    max-width: 730px;
    margin: auto;
    box-shadow: 0 10px 40px rgba(1, 9, 100, .25);
    transition: all .3s;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    padding: 25px 50px;
}