@media screen and (min-width: 14cm) {
    .side-flyer {
        font-family: "Roboto", sans-serif;
        display: flex;
        justify-content: space-around;
        align-items: center;
        text-align: center;
        height: 704px;
    }
}

button {
    height: 10%;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    padding: 1em;
}

button .arrow {
    border: solid #fff;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 10px;
    transition: transform 0.3s ease-out;
    outline: none;
}

#right-btn {
    margin: auto;
}

#right-btn .arrow {
    transform: rotate(-45deg);
}

#left-btn {
    margin: auto;
}

#left-btn .arrow {
    transform: rotate(135deg);
}