*, *::before, *::after {
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-color: #191919;
    display: flex;
    margin: 0%;
    align-items: flex-end;  /* both columns sit at the bottom */
    padding-bottom: 0;      /* no padding eating into the bottom edge */
}


.info-box {
    background-color: #1281ff;
    min-width: 35%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.info-box-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: sans-serif;
    color: white;
    font-size: clamp(2rem, 4vw, 4rem);
}

.info-box-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 80%;        /* instead of min/max fighting each other */
    padding: 1rem;
}

.link {
    text-decoration: none;
    color: white;
    font-size: x-large;
    font-weight: 600;
}

.link-box {
    display: flex;
    align-items: center;      /* vertically centers icon and text together */
    justify-content: center;
    gap: 0.5em;              /* space between icon and text, instead of margin */
    padding: 0.6rem 1rem;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
}

.link-icon {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;  /* keeps it aligned with the text */
}

.zepp-open {
    height: 85vh;   /* controls how tall the image is */
    width: auto;
    object-fit: contain;
}

.zepp-image-open {
    flex: 1;
    display: flex;
    align-items: flex-end;  /* hugs bottom */
    justify-content: center;
    overflow: hidden;
}

