@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Kaisei+Tokumin&display=swap");

:root {
  --black: #000;
  --white: #eeeaea;
  --red: #c24249;
  --accent-font: "Caveat", cursive;
  --base-font: "Kaisei Tokumin", serif;
}

html,
body {
  height: 100%;
  font-family: var(--accent-font);
  font-size: 20px;
  color: var(--red);
}

body {
  background: var(--black);
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
}

nav {
  background-color: var(--white);
}

.mySwiper {
  display: absolute;
  top: 10%;
}

.swiper {
  width: 70%;
  height: 70%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--white);

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  width: 80%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--red);
}

.swiper-pagination-bullet-active {
  background: var(--red);
}

.btn:hover {
  background-color: var(--red);
  border: 1px solid var(--red);
}

@media all and (max-width: 430px) {
  .mySwiper {
    display: absolute;
    top: 10%;
  }
}

@media all and (min-width: 767px) and (max-width: 888px) {
  html,
  body {
    font-size: 15px;
  }
}

@media all and (min-width: 800px) {
  .swiper {
    width: 50%;
  }
}

@media all and (min-width: 889px) and (max-width: 1010px) {
  html,
  body {
    font-size: 14px;
  }
}

#form {
  background-color: var(--white);
  border: 5px solid var(--red);
}

.form-label {
  font-size: 28px;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--red);
}

input,
textarea {
  font-family: var(--base-font);
}

#sendMessageBtn {
  font-size: 25px;
}

@media all and (max-width: 425px) {
  input,
  textarea {
    font-size: 16px;
  }
}

#thankyouMessage {
  background-color: var(--white);
  border: 3px solid var(--red);
}

.thankyouMessage {
  font-family: var(--base-font);
}
