@font-face {
  font-family: 'comic';
  src: url('../style/font/ComicRelief-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap; 
}
@font-face {
  font-family: 'comic';
  src: url('../style/font/ComicRelief-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

body {
   
    background-color: #ca6cf0;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
}

.bloc{
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}


.image img {
    max-width: 400px;
    height: auto;
}

h1 {
    font-family: 'comic',  sans-serif;
    font-weight: bold;
    color: #8e107d;
    font-size: 18px;
    margin-bottom: 10px;
}

.reponses {
    
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    font-family: 'comic', sans-serif;
    font-weight: normal;
    background-color: #f5bbf8;
    color: #8e107d;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;

}

.btn:hover {
    background-color: #f48fb1;
    transform: scale(1.02);
}

.btn:active {
    transform: scale(0.98);
}