* {
    margin: 0;
    padding: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

@font-face {
    font-family: 'KingthingsPetrock';
    src: url('/fonts/kingthingspetrock.ttf') format('truetype');
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body, body * {
    transform-style: preserve-3d;
}

body {
    font-family: 'KingthingsPetrock', sans-serif;
    width: 100%;
    overflow: auto;
    perspective: 1px;
}
.body{
    min-height: 100%;
    display: flex;
    flex-direction: column;

}
/*Header*/
header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 16px;
    margin: auto;
    position: relative;
    z-index: 10;
    color: black;
    transform: translateZ(-0.1px) scale(0.9);
}

header a {
    text-decoration: none;
    color: black;
    margin: 13px;
}

header a img {
    height: 58px;
}

header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header ul li {
    margin-right: 10px;
}

header ul li:last-child {
    margin-right: 0;
}

/*Content*/

.content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 90vh;
    flex: 1 1 auto;
}
footer{
    display: flex;
    justify-content: center;
}

