* {
    box-sizing: border-box
}

body {
    font-family: 'Georgia', serif;
    margin: 0;
    background-color: #FEFCF3;
    color: #000000;
    line-height: 1.6;

    margin: 0;
    min-height: 100vh;
    display: grid;
    place-content: center;
}

review-container {
    padding: 20px;
}

.review-container h2 {
    font-family: 'Earwig Factory';
    font-size: 2.5em;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.review-item h3 {
    font-family: 'Earwig Factory';
    font-size: 5em;
    color: #000000;
    margin-bottom: 10px;
}

.review-item .description {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.review-item .rating {
    font-size: 2em;
    font-weight: bold;
    color: #FF0B55;
}

.review-item img {
    height: 75%;
    width: 75%;
}

.topnav {
    /* font-family: 'Droid Serif', serif; */
    overflow: hidden;
    background-color: #000000;
    position: sticky;
    top: 0;
    width: 100%;
    transition: top 0.3s;
}

.topnav .myLinks {
    display: none;
}

.topnav a {
    float: left;
    color: rgb(195, 192, 192);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 30px;
}

.topnav h3 {
    font-size: 30px;
}

.topnav h2 {
    font-size: 25px;

}

.topnav a.icon {
    float: right;
}

.topnav a:hover {
    background-color: #b00000;
    color: rgb(0, 0, 0);
}

.topnav-items-container {
    float: right;
}

/* CSS */
.button-74 {
    background-color: #000000;
    border: 2px solid #ff0000;
    border-radius: 30px;
    box-shadow: #e60000 4px 4px 0 0;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-74:hover {
    background-color: #000000;
}

.button-74:active {
    box-shadow: #422800 2px 2px 0 0;
    transform: translate(2px, 2px);
}


.slideshow-container {
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
    margin: auto;
}

.fadeaway{
    display:none;
}

.fadeaway img {
    max-width: 700px;
    height: 600px;
    width:100%;
    object-fit: contain;
    display: block;
    margin: auto;

}

/* .numberImage{
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top:0;
} */

.dot{
    cursor: pointer;
    height: 5px;
    width: 5px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 2%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover{
    background-color: #717171;

}
.fade{
    animation-name:fade;
    animation-duration: 1.0s
}
footer h2{
    font-family: 'Earwig Factory';
    font-size: 4em;
    text-align: center;
    color: #000000;
}

@keyframes fade{
    from {opacity:.4}
    to{opacity: 1}
}


@media (min-width: 600px) {
    .button-74 {
        min-width: 120px;
        padding: 0 25px;
    }

    
}
