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

body {
    font-family: 'Swansea', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    text-align: center;
    padding: 2rem;
}

header h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.button-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.button-link:hover {
    background-color: #005fa3;
}

footer p {
    font-size: 0.9rem;
    color: #666;
}

/* fonts */
@font-face {
    font-family: "Swansea";
    src: url("./fonts/Swansea.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Swansea";
    src: url("./fonts/SwanseaItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Swansea";
    src: url("./fonts/SwanseaBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Swansea";
    src: url("./fonts/SwanseaBoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}