{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.carousel-container{
    width: 59.3%;
    margin: auto;
    border: 5px solid black;
    overflow: hidden;
    position: center;
}

.carousel-slide{
    display: flex;
    width: 100%;
    height: 500px;
}

#prevBtn{
    position: absolute;
    top: 65%;
    z-index: 30;
    left: 45%;
    font-size: 30px;
    color: black;
    opacity: 5;
    cursor: pointer;

}
#nextBtn {
    position: absolute;
    top: 65%;
    z-index: 30;
    left: 50%;
    font-size: 30px;
    color: black;
    opacity: 5;
    cursor: pointer;
}

a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 40px;
    margin: 10px 0;
}

    a:hover {
        text-decoration: underline;
        color: darkblue;
    }
