body {
    margin: 0;
}

.navbar {
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
}

.navbar>.logo {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.copy-bar {
    position: fixed;
    width: 100%;
    height: 40px;
    bottom: 0;
    background-color: #ffffff;
    box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.25);
}

.copy-bar>p {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 14px;
}

.wrapper {
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    width: 854px !important;
    height: 480px !important;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid #333;
}

.main {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #333;
}

.start-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    background-image: url(../media/img_bg_blur.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.start-screen>.color-adjust {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fafafa;
    opacity: 0.55;
}

.start-screen>.image {
    position: absolute;
    width: 60%;
    height: 65%;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    background-image: url(../media/img_map_land.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.start-screen>.text {
    position: absolute;
    width: 35%;
    padding: 30px;
    top: 47%;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    font-size: 20px;
}

.start-screen>.text>p {
    margin: 0;
}

.start-screen>.btn {
    position: absolute;
    width: 85px;
    height: 30px;
    bottom: 5px;
    right: 5px;
    background-image: url(../media/img_next_dark.png);
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: #fafafa;
    padding: 5px;
    border-radius: 6px;
}

.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    font-size: 18px;
}

.final-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #333;
    background-image: url(../media/img_community-garden_03.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* display: block; */
}

.final-screen>.text {
    position: absolute;
    width: 50%;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    font-size: 14pt;
}

.final-screen>.text>p {
    margin: 0;
}

.final-screen>.reset {
    position: absolute;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    background-color: #fafafa;
    padding: 5px;
    border-radius: 6px;
    font-weight: bold;
}