*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

/* this container is for the slides */
.container{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;

}

button {
    margin: 5px;
        border: 2px solid #000000;
        border-radius: 8px;
        transition: transform 0.3s;
        border-radius: 8px;
        font-family: coco;
    font-size: 30px;
    background-color: antiquewhite;
    border-radius: 0%;
    color: #623e2a;
    border: transparent;
    padding: 10px;
    width: 200px;
    transition: all 0.5s;
    outline: 1px solid transparent;
    transform: translateZ(0);
    will-change: transform;
    
}

.slides{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; 
   
    color: #fff;
    scroll-snap-align: start;
}

button:hover {
    transform:scale(1.05);
    border: 1px solid #623e2a;
    border-radius: 5px;
}
/* slide specific customisations */
.home{
    width: 100%;
    height: 100vh;
    background-image: url(Images/car-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;
}

.about {
    flex-direction: column;

}

.services {
    flex-direction: column;
    background-color: #efebe5;

}
.service-items {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    gap: 5px;
    flex-wrap: wrap;
}

.seasonal {
    background-color: #f4f1ed;
}

.reviews {
    background-image: url(Images/review.jpg);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;
}

img {
    border: 2px solid #623e2a;
}
/* Added custom fonts */
@font-face {
    font-family:Fanfarron;
    src: url(Fonts/Fanfarron.ttf);
}

@font-face {
    font-family:winter-prime;
    src: url(Fonts/Winter\ Prime.ttf);
}

@font-face {
    font-family:mager;
    src: url(Fonts/Catchy\ Mager.ttf);
}

@font-face {
    font-family:coco;
    src: url(Fonts/Coolvetica\ Rg\ Cond.otf);
}

h1{
    font-family: winter-prime;
    font-size: 50px;

}

h2 {
    font-family: fanfarron;
    font-size: 200px;
    text-align: center;
    text-shadow: 0 2px 10px #623e2a;

    line-height: .4em;

}

h3 {
    color: #f17a42;
    font-family: mager;
    font-size: 55px;
}

h4 {
    font-family: winter-prime;
    font-size: 35px;
    padding-bottom: 20px;
}
h5 {
    font-family: 'Courier New', Courier, monospace;
    color: #623e2a;
    font-size: 25px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2s
}
p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.about {
    align-items: left;
    justify-content: first baseline;
    background-color: antiquewhite;
}


.contact{
background-color: #623e2a;
}

.icon {
    font-size: 30px;
}

.icon:hover {
    color: bisque;
    text-decoration: none;
}

li {
    font-family: coco;
    list-style-type: none;
    font-size: 20px;
}

a{
    color:currentColor;
    font-family: coco;
    text-decoration:none;
    font-size: 20px;
   }

   a:hover{text-decoration: underline;
   }


/* all the different containers used are down below */
.detailcontainer {
    max-width: 350px;
    margin: auto;
    background-color: transparent;
    padding: 20px;
    border:2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.detailcontainer p {
    font-size: 25px;
}

.roundcont {
    max-width: 300px;
    margin: auto;
    background-color: transparent;
    border-radius: 10px;
    padding: 5px;
    border:1px solid #fff;
}

.blurcont {
    max-width: 200px;
    height: 250px;
    background-color: transparent;
    backdrop-filter: blur(3px);
    border-radius: 10px;
    padding: 5px;
    flex-direction: row;
    gap: 10px;
}

.boxcont {
    border: 2px solid #623e2a;
    width: 300px;
    height: 75px;
    background-color: transparent;
    padding: 5px;
}
