body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
}

.tiny5-regular {
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

.container {
    max-width: 500px;
    width: 100%;
    height: auto;
    background: #808080;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: "Tiny5", sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #ff90e3;
}

.body-text {
    display: flex;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.results {
    margin-top: 20px;
}

.results p {
    font-size: 18px;
    margin: 10px 0;
}

#sameDoorResult {
    color: #e00000;
}

#changeDoorResult {
    color: #00FF00;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-size: 18px;
    color: #000;
    background-color: #ff90e3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #ff6ada;
}