html {
    cursor: url("/assets/images/cursors/cursor1.png"), pointer;
}

@font-face{
    font-family: 'PlaypenSans';
    src: url(assets/fonts/PlaypenSans.ttf);
}

@font-face{
    font-family: 'Cute Dino';
    src: url(assets/fonts/Cute\ Dino.ttf);
}

b {
    font-family: 'PlaypenSans';
    font-size: 30px;
    color: #fbeefb;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body {
    background-color: #fffadb;
    color: #ffade5;
    font-family: 'PlaypenSans';
    text-align: left;
    width: 840px;
    margin: 0 auto;
    font-size: 30px;
}

header {
    background-image: url("assets/images/header.png");
    margin: 0 auto;
    margin-top: 20px;
    width: 838px;
    height: 140px;
    border: 1px solid #ffade5;
    border-bottom: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-family: 'Cute Dino';
}

header h2 {
    margin-top: 0px;
    padding-top: 30px;
    padding-left: 20px;
    font-size: 60px;
    margin-bottom: -66px;
}

header p {
    padding-left: 20px; 
    font-size: 50px;
    margin-bottom: 0px;
    font-family: 'Cute Dino';
}

nav {
    width: 840px;
    margin: 0 auto;
    background-color: #ffade5;
    color: #fffadb;
    font-family: 'Cute Dino';
    font-size: 20px;
}

nav ul {
    margin: 0;
    padding: 10px;
    padding-top: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

nav li {
    flex: 1;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: #fbeefb;
    display: block;
    width: 100%;
}

nav a:hover {
    text-decoration: underline;
    cursor: url("/assets/images/cursors/pointer1.png"), pointer;
}

.content {
    width: 798px;
    margin: 0 auto;
    background-image: url("/assets/images/bg.png");
    border: 1px solid #ffade5;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
    padding-bottom: 0px
}

.row {
    display: flex;
    margin-bottom: 20px;
}

button {
    width: 390px;
    height: 180px;
    background-color: #ffade5;
    border: 1px solid #ffade5;
    font-family: BitPotion;
    border-radius: 10px;
    padding: 10px;
    margin-right: 20px;
}

button:hover {
    color: #fbeefb;
    text-decoration: underline;
    cursor: url("/assets/images/cursors/pointer1.png"), pointer;
}

@media (max-width: 900px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: auto;
        margin: 0;
    }

    header,
    nav,
    .content {
        width: 100%;
        box-sizing: border-box;
    }

    header {
        background-size: cover;
        height: auto;
        min-height: 140px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
    }

    nav {
        font-size: 18px;
    }

    .content {
        width: 100%;
        padding: 12px;
        padding-bottom: 0;
    }

    .row {
        flex-direction: column;
        gap: 20px;
    }

    button {
        width: 100%;
        height: auto;
        min-height: 180px;
        margin-right: 0;
        box-sizing: border-box;
    }
}
