@font-face {
    font-family: foxy;
    src: url('./fonts/fantezi.ttf');
    src: url('./fonts/cute.ttf');
}
*{
    padding: 0;
    margin: 0;
}
img.fox{
    width: 80px;
}
main{
    width: 100%;
    height: 100vh;
    background-image: url('./images/back_fox1.jpg');
    background-size: cover;
}
main>header{
    width: 100%;
    height: 50px;
    background-image: url('./images/back_fox2.jpg');
    background-size: cover;
    text-align: center;
    box-shadow: 0 0 10px 6px #5f1701;
}
main>header>h1{
    font-family: foxy;
    color: rgb(255, 102, 0);
    font-size: 40px;
    text-shadow: 0 0 5px #000;
}
main>div.display-list-foxy{
    width: 90%;
    height: 100px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px 3px #000;
    font-family: foxy;
}
main>footer{
    position: fixed;
    bottom: 0;
}