@font-face {
    font-family: 'Berlin FB';
    src: url('/assets/fonts/BerlinFB.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: "Berlin FB";
}

h1 {
    margin: 0;
    font-size: 35px;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
    font-weight: normal;
    font-size: 23px;
}

p {
    margin: 0;
    font-size: 20px;
}

table {
    border-collapse: collapse;
}

table, th, td {
    border: 2px solid;
}

th, td {
    padding: 5px;
    box-sizing: border-box;
    width: 200px;
}

.content-container {
    margin: 30px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 25px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }
}