body {
    margin: 0;
    min-height: 100vh;

    background: #bdeeff;

    font-family: Arial, sans-serif;
    text-align: center;

    overflow: hidden;
}


/* İÇERİK */

.content {
    position: relative;
    z-index: 10;
}


/* BAŞLIK */

h1 {
    margin-top: 40px;
    margin-bottom: 5px;

    font-size: 60px;
    color: white;
}

p {
    margin-top: 0;

    font-size: 24px;
    color: white;
}


/* KEDİ ALANI */

.cat-area {
    width: 100%;
    height: 400px;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* KEDİ ÇERÇEVESİ */

.cat-card {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 12px;

    background: white;

    border-radius: 25px;

    box-sizing: border-box;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* FOTOĞRAF */

.cat-card img {
    display: block;

    max-width: 70vw;
    max-height: 360px;

    width: auto;
    height: auto;

    border-radius: 17px;
}


/* BUTONLAR */

.buttons {
    height: 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    position: relative;
    z-index: 20;
}


/* TÜM BUTONLAR */

.buttons button {
    width: 70px;
    height: 50px;

    padding: 0;

    border: none;
    border-radius: 15px;

    background: white;

    color: #72c9e8;

    font-size: 28px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

    transition: transform 0.15s;
}


/* SORU İŞARETİ */

#random {
    width: 55px;
    height: 55px;

    border-radius: 12px;
}


/* HOVER */

.buttons button:hover {
    transform: scale(1.1);
}


/* TIKLAMA */

.buttons button:active {
    transform: scale(0.95);
}


/* ARKA PLAN NOKTALARI */

body > .dot {
    position: fixed;

    width: 7px;
    height: 7px;

    background: #72c9e8;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


/* ARKA PLAN ÇİZGİLERİ */

canvas {
    position: fixed;

    left: 0;
    top: 0;

    width: 100vw;
    height: 100vh;

    pointer-events: none;

    z-index: 1;
}