.contactme {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensures the content is vertically centered */
   width: 100%;
    background-color: #E9D4C8;

}
.info-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 22px;
    text-align: center; /* Center aligning the list */
    max-width: 400px; /* Adjust max-width as needed */
    border: 1px solid #ccc; /* Optional: Add border for clarity */
    padding: 20px;
    border-radius: 10px; /* Optional: Rounded corners */
}
.info-list li {
    margin-bottom: 12px;
}
.info-list strong {
    font-weight: bold;
}
.info-list a {
    color: black;
    text-decoration: none;
}
.info-list a:hover {
    text-decoration: underline;
}