.logo_and_name {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 100%;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
}


.logo-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.logo-div picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo {
    display: block;
    width: auto;
    height: 75px;
    object-fit: contain;
}

.name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    text-align: center;
    text-decoration: none;
    font-family: Orbitron, Arial, Helvetica, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.name-div {
    display: flex;
    min-height: 50px;
    min-height: 100%;
    max-height: 100px;
    height: 100%;
    width: 100%;
    align-items: center;
}