.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

body{
    background-image: url(/image/body.jpg);
    background-size: cover;
}

h1 {
    left: 300px;
    font-size: 140px;
    color: aliceblue;
    margin-bottom: 150px;
}

.container {
    padding: 0 200px; /* 요소들 간격 */
    min-height: 100vh; 
    display: flex; /* 가로 정렬 */
    justify-content: space-between; /* 간격 */
    align-items: center; /* 중앙 정렬 */
}

.menu{
    line-height: 2;
    margin-bottom: 100px;
    font-size: 40px;
}

a{
    color: aliceblue;
    font-weight: bold;
}

img{
    height: 600px;
    box-shadow: 20px 20px 30px rgb(176, 176, 176);
    
}

/* ###################### 반응형 웹 ###################### */

@media screen and (min-width: 1580px) and (max-width: 2000px){
  h1{
    font-size: 90px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1580px){
    h1 {
      font-size: 100px;
      text-align: center;
    }
  
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    .menu {
      font-size: 30px;
      margin-bottom: 40px;
    }
  
    img {
      height: auto;
      max-width: 600px;
      margin-bottom: 150px;
    }
}

@media screen and (min-width: 0px) and (max-width: 800px){
  h1 {
    font-size: 50px;
    text-align: center;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    font-size: 30px;
    margin-bottom: 40px;
  }

  img {
    height: auto;
    max-width: 300px;
    margin-bottom: 150px;
  }
}
