html {
    width: 100%;
    height: 100%;
}
body {
    background-color: whitesmoke;
    font-family: sans-serif;
    color: black;
    margin: 2em;
    text-align: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
}

.logoZone {
    margin: auto;
    float:  left;
    width: clamp(40vh, 40%, 40vw);
    text-align: center;
    min-width: 250px;
}

.logo {
    margin: auto;
    text-align: center;
    max-width:100%;
    max-height:100%;
}

.homepage-hero {
    min-width: 250px;
    font-weight: bold;
    font-size: 2.9vw;
    float: right;
    width: clamp(40vh, 40%, 40vw);
/*    width: 80vh; */
}
.cta-button {
    font-size: 100%;
    border-radius: 0.25em;

}

@media (orientation: landscape) {
    .logoZone {
        max-width: 50vh;
        min-width: 40vw;
    }

@media (orientation: portrait) {
    .logoZone {
        min-width: 80vw;
        max-width: 50vh;
    }
    .homepage-hero {
        width: 80vw;
    }
}


a {
    color: #666;
    text-decoration: none;
}
