@font-face {
    font-family: PFDinPro;
    src: url(./fonts/PFDinTextPro-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: PFDinPro;
    src: url(./fonts/PFDinTextPro-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: PFDinPro, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: hsl(42, 20%, 10%) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 6px;
}

h1 {
    font-size: 48px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

p {
    font-size: 20px;
    margin-bottom: 5px;
}

a {
    color: hsl(42, 20%, 10%);
    font-size: 18px;
}

img {
    margin: 30px;
}

::selection {
    background-color: hsl(42, 20%, 10%);
    color: #f5f5f5;
}