body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
}

.image-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-link img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.text-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-section h1 {
    margin: 0;
}
