body {
    background-color: rgb(250, 224, 228);
    background: #f8f5fa;
    color: #333;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1 {
    font-family: Vogue;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

ul {
    list-style: upper-roman;
}

.link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 250px;
}

link ul li {
    margin-bottom: 1rem;
}

.link ul li a {
    display: block;
    background-color: #ffb8de;
    color: #703e59;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.link ul li a:hover {
    background-color: #bf34db;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

p {
    font-family: Apple;
    font-size: 1.125rem;
    color: #ffb8de;
    margin-bottom: 2rem;
    max-width: 500px;
    text-align: center;
}

@font-face {
    font-family: "Vogue";
    src: url(/font/Vogue.ttf);
}

@font-face {
    font-family: "Apple";
    src: url(/font/AppleGaramond-Bold.ttf);
}