body,html{
    background-color: black;
}
* {
    -webkit-tap-highlight-color: transparent;
}
    p{
        margin-top: 30px;
    }
.box{
    flex-direction: column;
    color: rgb(4, 206, 4);
    font-family: monospace,sans-serif;
    border: 1px solid green;
    box-shadow: 5px 5px 10px green;
    border-radius: 15px;
    margin: 0 auto;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 600px;
    margin-top: 30px;
}
img{
            width: 256px;
        height: 256px;
    transition: all ease 0.2s;
}
img:hover{
    cursor: pointer;
    transform: scale(1.1);
}
img:active{
    transform: scale(0.9);
}
button{
        display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all ease-in-out 0.3s;
    box-sizing: border-box;
    color: red;
    font-family: monospace;
    width: 200px;
    padding: 15px;
    font-size: 24px;
    border-radius: 8px;
    border: 1px solid green;
    background-color:rgb(0, 0, 0);
}
button:hover{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid red;
    /* transform: scale(1.1); */
    font-size: 36px;
}
button:active{
    transform: scale(0.9);
}

@media (max-width:768px) {
    .box{
        width: 99%;
    }
}
