
       *{
        margin:0;
        border:0;
              list-style:none;
    }
        
         
        a{
            text-decoration:none;
            color:white;
             
        }
        .bg{
            background-image:url("pcgame.jpg");
            background-size:cover;
            width : 100%;
            height:400px;
        }
        
        .header{
        display:flex;
        width:100%;
        height:80px;
        background-color:#36353f;
        }
        
        .menu{
        display:flex;  
        font-size:25px;
        justify-content: center; /* 가로 중앙 정렬 */
        align-items: center; /* 세로 중앙 정렬 */
        text-align:center;
        }
        
        
        .menu > ul {
            display:inline-block;
            padding:0 20px;
            border-radius:10px;
            }

       .menu > li{
            margin-left:40px;
            text-align:center;
        }
       
        
        .title{
            font-size:60px;
            color:white;
            font-family : fantasy;
        }
        
        p{
            font-size:25px;
        }
        
      nav ul {
        position: relative;
        list-style: none;
        padding: 0;
    }
      .submenu {
        position: absolute;
        display: none; /* 기본적으로 숨김 */
    }

    nav ul li:hover > .submenu {
        display: block; /* 마우스 오버 시 보임 */
    }
    
    li{
        color:white;
    }
    li>a{
        font-weight:bold;
        color:#97988f;
    }
    
    .pp{
       padding:20px;
    }