:root {
    --body-bg-image: url("../images/klonoadreams.png");

    --content: #fff;
}

body {
    background-color: #fff;
    background-image: var(--body-bg-image);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto ;
   
}

@font-face {
    font-family: "lemon";
    src: url("../fonts/Lemon Tuesday.otf") format(OpenType);
}

p {
    font-family: "lemon";
    color: black;
    font-size: 25px;
}

h1 {
    font-family: "lemon";
    color: black;
}

a {
    font-family: "lemon";
    color: black;
    font-size: 25px;
}

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a{
    color: black;
    text-decoration: none;
}

#container a:hover{
    color: #12c0ff;
    text-decoration: none;
}

.center {
    text-align: center;
}


