.home-body {
    padding: 100px 150px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    background: url('/static/img/vrod_background.webp');
    background-repeat: no-repeat;
    background-size: cover; background-position: center;
}

.home-vrod {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;

    & .logo img {
        width: 230px;
    }
    & .title {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
        color: var(--c-blue-01);
        line-height: 1.1em;
    }
}

.btn-explore {
    background-color: #75AC49;
    padding: 0.5em 1.5em;
    color: var(--c-white);
    border-radius: 3em;
    margin:0 0.5em;
}
.btn-explore:hover {
    color: var(--c-white);
    text-decoration: underline;
}

.home-footer {
    margin:25px 0 50px 0;
    display:flex;
    justify-content: space-evenly;

    & .logo-vt, .logo-vrc {
        margin:0 20px;
    }
    & .logo-vt img {
        width: 250px;
    }
    & .logo-vrc img {
        width: 250px;
    }
}

.patch_notes_link {
    color: var(--c-blue-01);
    font-weight: 600;
    text-decoration: none;
    font-size: small;
}
.patch_notes_link:hover {
    text-decoration: underline;
}