* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    text-align: center;
}

.ruleta-container {
    width: 500px;
    height: 500px;
    position: relative;
}

.flecha {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid red;
    position: absolute;
    top: -15px; /* Apunta hacia abajo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

button {
    background-color: #f95d35;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}
