body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  position: relative;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.input-widget {
  width: 40%;
}

.logo {
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
}

input[type="text"] {
  width: 300px;
  height: 20px;
  padding: 10px;
  margin-right: 10px;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

#cursor {
  position: absolute;
  top: 0;
  width: 20px;
  background-size: cover;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.my-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.my-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 20px;
}

@media (orientation: portrait) {
  .logo {
    width: 40vw;
    margin-bottom: 5vh;
  }

  .search-box {
    width: 60vw;
  }

  input[type="text"] {
    width: 75%;
    height: 3vh;
    font-size: 1.5vh;
  }

  button {
    width: 25%;
    height: 3vh;
  }

  #searchText {
    font-size: 1.2vh;
  }

  .my-modal {
    width: 100vw;
    height: 100vh;
  }

  .my-modal-content {
    padding: 1vh;
    font-size: 1.5vh;
    width: 80%;
  }

  .input-widget {
    width: 80%;
  }
}
