@font-face {
    font-family: Satoshi;
    src: url(./assets/fonts/Satoshi-Variable.ttf) format("truetype variable");
}

body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100vh;
}

#websiteLink {
    position: fixed;
    top: 10px;
    right: 20px;
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

#websiteLink:hover {
    text-decoration: none;
    color: red;
}

#main-title {
    position: fixed;
    top: 10px;
    left: 20px;
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #ffffff;
    margin: 0;
    z-index: 0;
    text-decoration: none;
}

#main-title:hover {
    text-decoration: none;
    color: red;
}

h1 {
    font-family: Satoshi, sans-serif;
    font-weight: 700;
    font-size: 72px;
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

p {
    font-family: Satoshi, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 2;
    text-align: center;
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

a {
    text-decoration: underline;
    color: white;
}

a:hover {
    text-decoration: none;
    color: red;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    p {
        font-size: 18px;
    }

    #websiteLink,
    #main-title {
        font-size: 14px;
    }

    #websiteLink {
        top: 5px;
        right: 10px;
    }

    #main-title {
        top: 5px;
        left: 10px;
    }
}