@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

html {
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  overflow: hidden;
  user-select: none;
  -ms-user-select: none;
}

button {
    background-color: transparent;
    color: black;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    color: rgb(244, 155, 185);
    text-align: center;
}

h2 {
    text-align: center;
    font-size: 35px;
    margin: 15px;
}

h3 {
    margin: 10px;
}

p {
    line-height: 1.5em;
    margin-bottom: 20px;
}

.dot-space {
    display: block;
    height: 15px;
}

ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 15px;
}

ul li {
    line-height: 1.5;
}

#startButton {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 260px;
    height: 100px;
    padding: 0;
    transform: translateX(-50%);
    background-color: pink;
    color: black;
    border: solid 2px black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 50px;
    z-index: 100;
}

#startButton:hover {
    background-color: palevioletred;
}

#startButton:active {
    transform: translateX(-50%) scale(0.95);
}

#startButton.hidden {
    display: none;
}

#menu-button {
    position: fixed;
    top: -4px;
    right: 3%;
    margin: 7px;
    font-size: 35px;
    border: none;
}

#menu-overlay {
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: right;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.menu-overlay-content {
    display: flex;
    flex-direction: column;
    width: 65%;
    height: auto;
    text-align: left;
    color: #000;
    background: white;
    z-index: 1005;
}

#menu-close-button {
    display: flex;
    background: none;
    font-size: 150px;
    font-weight: lighter;
    margin: 5px;
    color: white;
    border: none;
}

.menu {
    display: flex;
    flex-direction: column;
    font-size: 25px;
    margin: 0;
    padding: 10px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin-bottom: 15px;
}

.menu a {
    display: block;
    text-decoration: none;
    color: palevioletred;
    transition: color 0.2s, transform 0.2s;
}

.menu a:hover {
    color: red;
    transform: scale(1.05);
}

#infomation-button {
    position: fixed;
    top: 5px;
    right: 15%;
    margin: 5px;
    width: 35px;
    height: 35px;
    font-size: 25px;
    border: solid 2px black;
    border-radius: 50%;
}

#infomation-page {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    text-align: center;
    align-items: center;
}

.overlay-content {
    background: white;
    text-align: left;
    border-radius: 10px;
    width: 90vw;
    height: 75vh;
    font-size: 22px;
    margin-top: 10%;
    padding: 10px;
    overflow-y: auto;
}

#infomation-close-button {
    display: block;
    font-size: 40px;
    font-weight: bold;
    color: white;
    border: none;
}

@media (min-width: 768px) {
    body {
      height: 100vh;
    }

    #menu-button {
        right: 20px;
    }

    #infomation-button {
        width: 30px;
        height: 30px;
        right: 70px;
        font-size: 22px;
    }
  
    #startButton, #menu-button, #infomation-button, #close-btn, #close-button {
        cursor: pointer;
      }
  
    .menu-overlay-content {
      padding: 10px;
    }
    
}