@font-face {
    font-family: 'niconne';
    font-style: normal;
    font-weight: normal;
    src: url("fonts/niconne/Niconne-Regular.woff") format("woff");
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;

}

body{
    background-color: steelblue;
    width: 100%;
    height: 100%;

}

div{
    border: 1px solid teal;
    box-shadow: 5px 12px 3px gray, 12px 0px 3px gray;
    border-radius: 500px;
    background-color: #E0C097;
    display: block;
    padding: 2.5%;
    width: 50vmax;
    height: 25vmax;
    text-align: center;
    margin: auto;
    margin-top: 15%;
    font-family: niconne;
    padding: 2.5%;
    font-size: 15vmax;
    color: #B85C38;
    text-shadow: 4px 3px #5C3D2E , 8px 6px #2D2424 , 12px 9px #5C3D2E , 16px 12px #2D2424 , 21px 21px 3px gray;
    
}

div:hover{
    box-shadow: 0px 10px 3px black, 10px 0px 3px black;
    cursor: pointer;
    text-shadow: 4px 3px #5C3D2E , 8px 6px #2D2424 , 12px 9px #5C3D2E , 16px 12px #2D2424 , 20px 15px 3px black; 
    visibility: visible;
}
p{
    content: "Click Me to START";
    color: gold;
    text-align: center;
    background-color: red;
    border: 5px solid green;
    width: 50vmax;
    height: 8vmax;
    padding: 10px;
    display: block;
    /* margin: auto; */
    font-size: 5vmax;
    font-family: 'Times New Roman', Times, serif;
    text-shadow: none;
    position: absolute;
    top: 80px;
    left: 350px;
    visibility: hidden;

}

div:hover>p{
    visibility: visible;
}

div:active{
    text-shadow: none;
    box-shadow: none;
    border: 2px solid black;
    text-decoration: 2px solid black;
}
