@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Roboto:wght@300&display=swap');

body {
    margin:0;

    /* 
    border: 0px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto; */
    color:cadetblue;
    font-family: "Roboto","M PLUS Rounded 1c","Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

#container {
    display:flex;
    min-height:80vh;
    /* width: 80%; */
}


#menu { 
    width:200px;
    padding: 20px;
    
}

#menu ul{
    list-style: none;
    display:flex;
    flex-direction:column;
    /* column-gap:20px; */
    /* justify-content: space-around;
    align-items: flex-start; */
}

#menu ul li{
    height:30px;
}

#menu a:hover{
    background-color:rgba(89,78,82,0.2);

}

#main{
    flex: 1;
    justify-content: center;
    text-align:center;
    /* justify-content: space-around; */

}

a {
    color:cadetblue ;
}

#footer {
    width: 100%;
    clear: both;
    text-align: center;
    font-size: x-small;
    color: #ccc;
    padding: 10px;
    margin-top: 10px;
    border-top: #ccc 1px solid;
}

.gallery{
    display: flex;
    flex-wrap:wrap;
}

.gallery img{
    filter: grayscale(100%);
    transition: 0.7s;
}

.gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.gallery li{
    list-style: none;
    padding:15px;
}

#counter-wrap{
    text-align:center;
    
}
#counter-wrap ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin:0px;
    padding:0px;
}

#counter-wrap ul li{
    width:33.33%;
    height: 100%;
    margin:0px;
    /* padding:30px 50px; */
    text-align:center;
}


#counter-wrap ul input:hover{
    transform:scale(1.2);
    cursor: pointer;
}

#counter-wrap ul input:active{
    transform:scale(1.0);
}

 #counter-wrap ul li:hover{
    background:rgb(217, 217, 217);
 } 

 #counter-wrap ul li:active{
    background:white;
 } 

#counter-wrap ul li p {
    font-size:50px;
    padding:0px;
    font-weight: bold;
    margin:5px;
}

.char{
    font-size:18px;
    margin:0;
    /* padding:10px; */
}

#reset{
    padding:10px 30px;
    margin:10px;
}

#secret{
    padding: 10px 200px;
    font-size: 20px;
    color: grey;
    background-color: rgb(252, 248, 234);
}