* {
    margin: 0;
    padding: 0;
}
/* the height the style of the background */
body {
    background-size: cover;
    background-repeat: repeat-y;
    height: 100vh;
    background-position: 0 8vh;
    overflow: hidden;
}
/* the apperiance of the slide page container */
.productPreviewContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 15rem;
    margin-bottom: 10rem;
    margin-left: 10rem;
    margin-right: 10rem;
    align-items: center;
}
/* the style prefferiances of the slide pages */
.productPreview {
    display: flex;
    flex-direction: column;
    border: 3px solid black;
    border-radius: 2rem;
    background-color: hsla(206, 65%, 62%, 0.7);
    text-align: center;
    
}

.pd {
    display: none;
}
/* the next and previe button stlye */
.next {
    /* height: 4rem;
    width: 5rem; */
    /* background-color: lightgray; */
    color: black;
    border-style: none;
    border-radius: 1rem;
    font-size: 3em;
    text-align: center;
    align-items: center;
}

.next:hover {
    cursor: pointer;
}

.productPreview img {
    max-width: 38vh;
}
/* the stlye of the buy button */
.buy{
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    border-radius: 30rem;
    border-style: none;
    background-color: rgb(28, 140, 225);
    font-size: 2em;
    text-decoration: none;
    color: black;
    font-family:   'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.buy:hover{
    background-color: rgb(63, 63, 255);
}