@charset "utf-8";

.body {
    color: rgb(53, 53, 53);
    background-image: url(../img/background-image.svg);
    background-size: cover;
}

nav {
    width: 100%;
    position: fixed;
    background-color: #bcdfdf;
    box-shadow: 0px 0px 27px -5px rgba(0, 0, 0, 0.23);
    z-index: 100;
}

nav img {
    width: 30px;
    height: 45px;
    margin: auto 20px;
}

nav div {
    margin: 20px 30px;
    font-size: 20px;
    font-weight: lighter;    
}

nav a {
    color: #393939;
    text-decoration: none;
}

.nav-menu {
    display: flex;
}

.content {
    position: relative;
    padding-top: 90px;
}

.content > div {
    display: block;
}

.box {
    width: calc(100% - 50px);
    position: relative;
    margin: 30px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0px 0px 27px -5px rgba(0, 0, 0, 0.23);
}

.line-qr {
    max-width: 100%;
}

footer {
    top: 100vh;
    width: 100%;
    position: sticky;
    padding: 20px;
    background: #bcdfdf;
    box-shadow: 0px 0px 27px -5px rgba(0, 0, 0, 0.23);
}

footer > div {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links > a {
    margin-right: 20px;
    color: #000;
    text-decoration: none;
}