﻿.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-style: dotted;
    margin: 0;
    height: 100vh;
    width: 100vw;
    background-color: black;
    overflow: hidden;
}

.svg-background1, .svg-background2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dotted;
    background-repeat: no-repeat;
    background-size: contain;
}

.svg-background1 {
    height: 50%;
    width: 50%;
}

.svg-background2 {
    height: 99%;
    width: 99%;
}

#svg1 {
    background-image: url('/Doc/combined2.svg');
    background-position: center;
}

#svg2 {
    background-image: url('/Doc/zootocaEmbedded.svg'); /* Uncommented */
    background-position: center;
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Better than space-around for even spacing */
    border-style: dotted;
}
