@font-face {
    font-family:academy;
    src: url(academy.ttf);
}

* {
    box-sizing: border-box;
    font-family:academy;
}

body {
    background-color:beige;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    font-size:20px;
    width:800px;
    margin-left:350px;
}

h1, h3 {
    text-align:center;
}

h3 {
    max-width: 700px;
}
p {
    -webkit-text-decoration-line:underline;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
}