body {
    background-color: #f8f6f1;
}

.visualizer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    align-items: center;
    width: 100vw;
    height: calc(100vh - 117px);
}

.visualizer-container > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px;
    max-height: 850px;
}

.visualizer-container > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border: 30px solid white;
}

.visualizer-container > div:last-of-type > h2 {
    font-size: 36px;
    text-align: center;
}

.visualizer-container > div:last-of-type > p {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.visualizer-container > div:last-of-type > span {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.visualizer-container > div:last-of-type > span > a {
    color: white;
    background-color: #be1623;
    border: none;
    box-sizing: border-box;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 20px;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.visualizer-container > div:last-of-type > span > a:last-child:hover {
    background-color: #7d0d17;
}

.visualizer-container > div:last-of-type > span > a:first-of-type {
    margin-right: 20px;
    font-size: 16px;
    background-color: #f8f6f1;
    color: black;
}

.visualizer-container > div:last-of-type > span > a:first-of-type:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1400px) {
    .visualizer-container > div:last-of-type > span > a {
        font-size: 16px;
    }

    .visualizer-container > div {
        padding: 50px;
    }

}

@media screen and (max-height: 800px) {
    .visualizer-container > div {
        max-height: 550px;
    }
}

@media screen and (max-width: 1100px) {
    .visualizer-container {
        flex-direction: column;
        flex-wrap: wrap;
        height: auto;
        width: 100vw;
    }

    .visualizer-container > div {
        padding: 10px;
        width: 90%;
        max-height: 350px;
        margin-bottom: 50px;
    }

}

@media screen and (max-width: 800px) {

    .visualizer-container > div {
        max-height: 200px;
        margin-bottom: 100px;
    }

    .visualizer-container > div > img {
        border: none;
    }

    .visualizer-container > div:last-of-type > h2 {
        font-size: 24px;
    }

    .visualizer-container > div:last-of-type > p {
        font-size: 16px;
    }

    .visualizer-container > div:last-of-type > span {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }

    .visualizer-container > div:last-of-type > span > a {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .visualizer-container > div:last-of-type > span > a:first-of-type {
        margin-right: 0;
    }
}