body {
 background-color: black;
 color: white;
 font-family: Arial, sans-serif;
}

.container {
 max-width: 500px;
 margin: 0 auto;
 padding: 20px;
 border-radius: 4px;
}

.title {
 font-size: 24px;
 font-weight: bold;
 text-transform: uppercase;
 border-bottom: 2px solid #FF3702;
 padding-bottom: 10px;
}

.question {
 font-size: 20px;
 margin-top: 20px;
 margin-bottom: 20px;
}

.info-text {
 font-size: 14px;
 margin-bottom: 30px;
}

.button-container {
 display: flex;
 justify-content: space-between;
}

.decline-button {
 flex: 1;
 padding: 10px;
 border: 2px solid #CCCCCC;
 border-radius: 4px;
 background-color: white;
 color: black;
 cursor: pointer;
}

.confirm-button {
 flex: 1;
 padding: 10px;
 background-color: #FF3702;
 border: none;
 border-radius: 4px;
 color: white;
 cursor: pointer;
 margin-left: 20px;
}
