@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Bebas+Neue&family=Nunito:wght@500&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #333;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.navbar {
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
}

.navbar ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.navbar li {
    margin: 0 1rem;
    padding: 1rem;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #f4f4f4;
}

.navbar ul li a:hover {
    color: skyblue;   
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    scroll-snap-align: center;
}

section h1 {
    font-size: 4rem;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

section p {
    font-size: 2rem;
    max-width: 85%;
    -webkit-text-stroke-width: 0.75px;
    -webkit-text-stroke-color: black;
}

/* Section Images */
section#home {
    background: url('images/matthew-dockery-s99-JP8P3Hg-unsplash.jpg') no-repeat center center/cover;
}

section#about {
  background: url('images/neelabh-raj-cw1914zDHUs-unsplash.jpg') no-repeat center center/cover;;
}

section#service {
  background: url('images/neelabh-raj-rS9PBJBY5pc-unsplash.jpg') no-repeat center center/cover;;
}

section#contact {
  background: url('images/deniz-demirci-cNQoYkRJmQk-unsplash.jpg') no-repeat center center/cover;;
}

/* #home h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
} */

form {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
}

form h3 {
  color: #555;
  font-weight: 800;
  margin-bottom: 20px;
}

form input, form textarea {
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;
}

form button {
  padding: 15px;
  background: #ff5361;
  color: white;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;
}