*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Arial, sans-serif;
    
}

/* header */
header{
    font-family: 'Sometype Mono', monospace;
    background-image: url('Images/Background\ Img.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
header h1 {
    font-size: 80px;
    margin: 50px;
    font-weight: 500;
    color: beige;
    
    
}
header h2{
    font-family: 'Sometype Mono', monospace;
     font-size: 30px;
     font-weight: 300;
}
header h2:hover{
    
    color: sandybrown;
}
header p{
    font-size: 20px;
    margin: 0.5rem 0;
    color: sandybrown
}

header a.cta {
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    padding:1rem 2rem;
    text-decoration: none;
    border-radius: 60px;
    margin-top: 1rem;
    transition: all 0.2s;
}

header a.cta:hover {
    background-color: sandybrown;
    color: #fff;
    cursor: pointer;
}

/* nav */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 7%;
}
nav img{
    height: 40px;

}
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.2rem;
}

nav a:hover{
    
    color: sandybrown;
    
}

main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 0;
}
/* Section Form */
section{
    width: 80;
    text-align: center;
    margin: 2rem;
    
}
section h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

section form{
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;

}

section input[type="text"],
section input[type="email"],
section input[type="tel"],
section input[type="time"],
section textarea{
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: none;
    border: none;
    outline: none;
    background: #f2f2f2;
}

section button[type="submit"]{
    background-color:sandybrown;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius:40px ;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

section button[type="sumbit"]:hover{
    background-color: #fff;
    color: #333;

}
/* Footer */
footer{
    background-color:sandybrown;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
}

footer p{
    font-size: 1rem;
    margin: 0;

}
footer a{
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
}

/* Services */
#services{
    background-color: aliceblue;
font-family: 'Cinzel', serif;

    padding: 1rem 0;
    text-align: center;
}

#services h2{
    margin-bottom: 5rem;
   
}

.service{
    font-family: 'Cinzel', serif;
    width: 30%;
    display: inline-block;
    padding: 0 rem;
    text-align: center;
}
.service h3{
    color: rgb(128, 91, 0);
}

.service img{
    width: 370px;
    margin-bottom: 1rem;
    border-radius: 70%;

}
.service h3{
    margin-bottom: 1rem;
}
/* 600px */
@media only screen and (max-width: 600px){
    header{
        width: 100%;
        flex-direction: column;
        }
    header h1{
        font-size: 50px;
    }
      nav{
        flex-direction: column;
      }
      main{
        flex-direction: column;
      }
      section{
        width: 100%;

      }
      .service{
        flex-direction: column;
        width: 100%;
        margin: 2rem 0;
      }
}

/* About */
#about{
    
    font-family: 'Cinzel', serif;
    line-height: 30px;
    padding: 50px 8%;
}
#about h2{
    color: rgb(128, 91, 0);
}

#about img{
    margin-top: 20px;
}
#contact{
    background-image: url('./Images/Contact.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Cinzel', serif;
    line-height: 30px;
    color: white;
}
#contact h2{
    color: beige;
    margin-bottom: 2rem;

}
