body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  overflow: overlay;
}

a {
  color: white;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

nav {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: absolute;
}

nav a {
  font-size: larger;
  z-index: 1;
  text-align: center;
  padding: 25px;
}

nav a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5))
}
    
section {
  display: flex;
  flex-direction: row;
  z-index: 0;
  width: 100%;
  height: fit-content;
}

section#welcome {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)), url('../img/bg.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

section#welcome h1 {
  position: relative;
  margin: 0;
  text-align: center;
  font-size: 50pt;
  font-weight: 500;
  letter-spacing: 8px;
}

section#presentation div {
  background-color: #0f1626;
}

section#location div {
  background-color: #ab987a;
}

section#contact {
  flex-direction: column;
  background-color: #f5f5f5;
  color: #0f1626;
}

section > div > p {
  padding: 0 30px;
  text-align: justify;
}

section#contact h2 {
  margin: 0 0 8% 0;
  padding: 80px 0;
  text-align: center;
  position: relative;
  top: 0;
}

div.container {
  padding: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 30%;
}

div.method {
  color: white;
  background-color: #0f1626;
  opacity: 0.9;
  height: 100%;
  width: 300px;
  font-weight: 500;
  padding: 50px;
}


div.method > p {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25%;
}

div.method a {
  display: inline-block;
  width: fit-content;
}

div.method a::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: white;
  transition: 300ms;
}

div.method a:hover::after {
  width: 100%;
}

div.big {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: brightness(0.95);
  width: 70%;
}

div.small {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  filter: brightness(1.15);
  height: calc(100% - 40px);
  width: 30%;
  padding: 20px 10px;
  overflow-y: scroll;
}

div.small h2 {
  margin-bottom: 10%;
}

button#up {
  padding: 1px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 10%;
  border: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0;
}


button#up img {
  transition: width 200ms;
}

button#up img:hover {
  width: 54px;
}

#carousel-1 {
  aspect-ratio: 16/9;
  width: 95%;
  position: relative;
  overflow: hidden;
}

#carousel-2 {
  width: 95%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}


div.small table {
  border-collapse: collapse;
}

div.small tr, div.small td{
  border: 1px solid white;
}

div.small td {
  padding: 20px;
}

div.small td.center {
  text-align: center;
}

div.small table ul {
  padding-inline-start: 25px;
}

#price {
  font-size: xx-large;
  margin: 30px 0;
  border: 1px solid white;
  padding: 10px;
  border-radius: 5px;
}

section#presentation div.small h2 {
  margin-bottom: unset;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
  display: none;
}

body::-webkit-scrollbar-track {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}

div.small::-webkit-scrollbar-track {
  width: 100%;
  background-color: transparent;
  display: unset;
}

div.small::-webkit-scrollbar {
  width: 6px;
}

div.small::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
}

div.small:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.7);
}