@font-face {
    font-family: CatShop;
    src: url("../fonts/CatShop/CatShop.ttf");
}

body{
    background-color: black;
    font-family: CatShop;
    user-select: none;
}

.content{
    display: flex;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 0;
}

.information{
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.information p.logo{
    font-size: 74pt;
    color:white;
    margin: 0 0;
}


.information p.alt{
    font-size: 14pt;
    color:white;
    margin: 0 0;
}

.foot{
    position: fixed;
    bottom: 0px;
    color:gray;
    font-size: 14pt;
    font-family: Arial;
}

.foot a{
    text-decoration: none;
    color:white;
}

.construction{
    display: flex;
    position: fixed;
    left: -75px;
    top: 50px;
    transform: rotate(-45deg);
    width: 300px;
    height: 50px;
    background-color: yellow;
    justify-content: center;
    align-items: center;
}

.construction p{
    color:black;
    text-align: center;
    font-size: 15pt;
    font-family: Arial;
    font-weight: bold;
}