* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

@font-face {
    font-family: "Serena Loren Demo";
    src: url("./resources/fonts/SerenaLorenDemoRegular.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    src: url("./resources/fonts/PlayfairDisplay-Regular.woff2") format("woff2");
}

body {
    margin: 2em auto;
    background-color: #f7f2ee;
    font-family: "Playfair Display", serif;
}

h1 {
    color:#142952;
    font-family: "Serena Loren Demo", serif;
    font-size: 4em;
    font-weight: normal;
}

.link-container {
    display:flex;
    align-items: center;
    gap: 2em;
    justify-content: center;
}

.center-wrapper {
    display: flex;
    justify-content: center;
}