.logo-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: rgb(255, 255, 255);
    overflow: hidden;
    display: flex;
}

.logo-overlay__content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    width: 75vw;
    height: 75%;
    margin: auto;
}

.close_overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
}