.hero .wrapper {
    width: 100vw;
    height: 100svh;
}

.hero .wrapper .logo {
    display: flex;

    /*justify-content: center;*/
    align-items: center;

    height: 100%;
    width: 100%;

    position: absolute;
    inset: 0;
    flex-direction: column;
    /*padding-top: var(--header-height);*/
    /*padding: 115px 0 50px 0;*/
    padding-top: 125px;
}

.hero .wrapper .logo p {
    /*padding: 50px;*/
    /*position: absolute;*/
    color: rgba(var(--text-color-body-rgb), .5);
    font-family: var(--font-family-global), serif;
    width: 50%;
    /*height: 50%;*/
    /*height: 100%;*/
    text-align: justify;
    /*font-weight: bold;*/
    font-size: var(--font-size-medium);
    white-space: pre-line;
    /*top: 50%;*/
    align-self: center;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 10;*/
    /*-webkit-box-orient: vertical;*/
    overflow: overlay;
    margin: 50px;
}

.hero .wrapper .logo img {
    /*height: 50%;*/
    width: 50%;

    min-width: 250px;
    object-fit: contain;
    /*position: absolute;*/
    z-index: -1;
    /*margin: 50px;*/
}

.hero .wrapper .title {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    height: 100%;
    width: 100%;

    color: var(--body-color-light);
    font-size: calc(25px + 5vw);

    padding-top: var(--header-height);
}

.hero .wrapper .title .left-side {
    position: relative;

    justify-self: left;
    align-self: start;
    font-family: var(--font-family-global), serif;
    text-shadow: var(--box-shadow-global);
    padding: 0 var(--header-height);
}

.hero .wrapper .title .right-side {
    position: relative;

    justify-self: right;
    align-self: end;
    font-family: var(--font-family-global), serif;
    text-shadow: var(--box-shadow-global);
    padding: 0 var(--header-height);
}

@media screen and (min-width: 950px) {
    .hero .wrapper .logo img {
        height: 50%;
    }
}

@media screen and (max-width: 950px) {
    .hero .wrapper .logo p {
        width: 75%;
    }

    .hero .wrapper .title .right-side {
        align-self: start;
    }
}

@media screen and (max-width: 450px) {
    .hero .wrapper .title .left-side,
    .hero .wrapper .title .right-side {
        padding: 0 .5rem;
    }
}
