body {
    color: #333;
    display: flex;
    flex-direction:column;
    background-color:rgb(190,190,190);
}
.container {
    height:100vh;
    align-self:center;
    max-width: 800px;
    margin: 10px auto;
    padding:20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    text-align: center;
    color: #333;
    background-color: white;
}

.info-section {
    background-color: white;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    margin-top: 20px;
    gap:10px;
}

p {
    background-color: white;
    line-height: 1.6;
}

strong {
    background-color: white;
    font-weight: bold;
    color: #0056b3;
}

span {
    background-color: white;

}

