@charset "UTF-8";

html,* {
  margin: 0;
  padding: 0;
  font-family: 'Inter';
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  border: none;
  vertical-align: bottom;
}

button {
  background: none;
  border: none;
  appearance: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

body {
  color: #ffffff;
}

.header {
  background: #333333;
  display: flex;
  align-items: center;
  height: auto;
  padding: 10px 20px;
  justify-content: center;
  flex-direction: column;
}

.hamburger {
  position: relative;
  margin-left: auto;
  width: 45px;
  height: 35px;
  z-index: 1;
}

.hamburger span {
  position: absolute;
  left: 0;
  background: #ffffff;
  width: inherit;
  height: 5px;
}

.top-line {
  top: 0px;
}

.center-line {
  top: 15px;
}

.bottom-line {
  bottom: 0px;
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.7s ease-in-out, visiblity 0.7s ease-in-out;
  z-index: 1;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333333;
  background: #ffffff;
  width: 350px;
  height: 200px;
  text-align: center;
  padding: 30px 50px;
  border-radius: 5px;
}

.modal-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.modal-title {
  margin-bottom: 10px;
  color: #4F46E5;
}

.modal-text {
  margin-bottom: 20px;
}

.modal-close {
  padding: 10px 20px;
  background: #333333;
  color: #ffffff;
}

.modal-btn {
  position: relative;
  width: 100%;
  height: 100vh;
}

.modal-open {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #000000;
  text-align: center;
  padding: 20px 50px;
}
