body {
    margin: 0;
    font-family: 'Indie Flower';
    
    background-color: #FFFFFF;

    cursor: url('cakecursor.png') 16 32, auto;
}

.wish{
    padding: 10%;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
}

.wish img {
    width: 80%;
    image-rendering: crisp-edges;
    object-fit: contain;
    -webkit-filter: drop-shadow(0px 0px 10px #666);
    filter: drop-shadow(0px 0px 10px #666);
}

.message {
    padding: 10%;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message p, p {
    width: 80%;
    font-size: 32px;
    font-weight: bold;

    margin-inline: auto;
}

.message b {
    color: red;
    animation: rgb 5s infinite;
}

.message img {
    width: 20%;
    image-rendering: crisp-edges;
    object-fit: contain;
    -webkit-filter: drop-shadow(0px 0px 10px #666);
    filter: drop-shadow(0px 0px 10px #666);

    margin-inline: auto;
}


@keyframes rgb {
    0% {
        color: red;
    }
    10% {
        color: orange;
    }
    20% {
        color: yellow;
    }
    30% {
        color: yellowgreen;
    }
    40% {
        color: green;
    }
    50% {
        color: darkturquoise;
    }
    60% {
        color: lightblue;
    }
    70% {
        color: blue;
    }
    80% {
        color: purple;
    }
    90% {
        color: palevioletred;
    }
    100% {
        color: red;
    }
}

.ach {
    width: 25vw;

    position: fixed;
    top: 10px;
    right: -25vw;

    border-radius: 10px;

    transition-duration: 1s;
}

a, a:visited, a:hover {
    color: red;
    animation: rgb 5s infinite;

    text-decoration: none;
}

p a {
    color: red;
}