.content {
    padding: 0.5rem 0;
    /* background-color: aquamarine; */
}

.wrapper {
    position: relative;
    display: flex;
    margin: 2rem 0;
    width: 100%;
    height: 20rem;
    /* background-color: black; */
    overflow: hidden;
}

.image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /* width: 60%; */
    max-height: 100%;
    transition: transform 0.5s ease-in-out;
}

.moveLeft {
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translate(0, -50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #ffffff6c;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    z-index: 50;
}

.moveRight {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translate(0, -50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #ffffff6c;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    z-index: 50;
}

.displayBox img {
    max-width: 80%;
}

.linkBox {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    width: 100%;
    /* background-color: pink; */
}

.links {
    padding: 0.4rem;
    margin: 0 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #dddddd;
    border-radius: .25rem;
    background-color: #ffffff;
}

.linkbtns {
    display: flex;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem;
    margin: 0 0.5rem;
    background-clip: padding-box;
    background-color: rgba(0, 120, 255);
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    /* width: 100%; */
    flex: 1;
    height: 2rem;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
}