body {
    margin: 0;
    display: grid;
    background-color: #000000;
    overflow-x: hidden;
}



.top-box {
    height: 75vh;
    background-image: url("images/image.jpg");
    background-position: center;
    background-size: cover;

    animation-name: MOVE-BG;
    animation-duration: 100s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes MOVE-BG {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    to {
        transform: scale(1);
    }
}

.logo-box {
    height: calc(75vh + 1px);
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;

    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 40%);
    background-position: bottom center;
}

.content-box {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Noto Serif';
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 30px 0 30px;
    z-index: 9;
}

@media (max-width: 600px) {

    .top-box {
        height: 70vh;
    }

    .logo-box {
        height: 70vh;
    }

    .content-box {
        height: 20vh;
    }
}

h3 {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

p {
    letter-spacing: 0.04em;
}

a {
    color: #AA8D5C;
    text-decoration: none;
}