html,
body {
    height: 100%;
}

@keyframes color {
    0%   { background: #3c6c43; }
    10%  { background: #3c6c61; }
    20%  { background: #3c5f6c; }
    30%  { background: #3c4d6c; }
    40%  { background: #563c6c; }
    50%  { background: #6c3c60; }
    60%  { background: #6c3c3c; }
    70%  { background: #6c523c; }
    80%  { background: #6c693c; }
    90%  { background: #5b6c3c; }
    100% { background: #3c6c43; }
}

body {
    font: 20px/1.5 'Outfit', sans-serif;
    margin: 0;
    color: #fff;
    /* background: #587f48 url(../img/bg.jpg) no-repeat center top; */
    background: #006A4E;
    /* animation: color 20s infinite linear; */
    background-size: cover;
}

svg,
img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
p {
    margin: 0 0 40px;
}

.logo {
    display: block;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    width: 170px;
}

a {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.btn {
    display: inline-block;
    border: 2px solid #fff;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn:hover {
    color: #006A4E;
    background-color: #fff;
}

.splash {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.splash__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.splash__center {
    max-width: 450px;
    padding: 40px 20px;
    margin: 0;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.icon {
    margin: 0 4px;
}

/* .bg {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg__icon {
    height: 50%;
    max-width: 100%;
    transform: rotate(20deg);
    position: absolute;
    bottom: 0;
    right: 5%;
} */