body {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  display: grid;
  background: rgba(255, 255, 255, 0.233);
  font-family: filson-pro, sans-serif;
  font-weight: 400;
  font-size: 1.01em;
}

.content_wrapper {
  background: rgba(255, 255, 255, 0.692);
  margin: auto;
  display: grid;
  align-items: center;
  height: 100vh;
}


p{
  text-align: left;
}

h1 {
  position: relative;
  text-align: center;
  font-size: 4em;
}

.center{
  text-align: center;
}

select{
  font-family: filson-pro, sans-serif;
  font-weight: 400;
  font-size: 1.01em;
  background: #d3d3d359;
  /* border: none; */
  cursor: pointer;
}

#content {
  align-self: center;
  justify-self: center;
}

#text {
  padding-bottom: 6vh;
  text-align: center;
  align-self: center;
  justify-self: center;
  line-height: 1.5;
}

button {
  font-family: filson-pro, sans-serif;
  font-weight: 400;
  font-size: 1.01em;
  background: #d3d3d359;
  background-repeat: no-repeat;
  border: 1px solid rgb(0, 0, 0);
  cursor: pointer;
}

.slidecontainer {
  width: 200px;
  align-self: center;
  justify-self: center;
  align-items: center;
}

.slider {
  -webkit-appearance: none;
  width: 200px;
  height: 12px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
}

.gallery {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr)); */
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

.gallery,
.gallery-item {
  margin: 0;
}

a{
  text-decoration: none;
}

.link {
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	color: black;
}

.link::before,
.link::after {
	position: absolute;
	width: 100%;
	height: 1px;
	background: currentColor;
	top: 100%;
	left: 0;
	pointer-events: none;
}

.link::before {
	content: '';
}

.link_custom::before {
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
}

.link_custom:hover::before {
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
}