* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('static/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: 'Zilla Slab', serif;
    min-height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
}

.decor-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    z-index: 1;
}

.decor-logo {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 150px;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title-badge {
    background-color: #f2a87d;
    color: white;
    font-size: 32px;
    padding: 10px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.riddle-card {
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    hyphens: auto;
    font-size: medium;
    color: #603811;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-link {
    align-self: start;
    margin-left: 20px;
}

.about-link a {
    -webkit-tap-highlight-color: transparent !important;
    text-decoration: none;
    background-color: #f2a87d;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
