body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #6ab04c; /* Green background color */
    color: #fff; /* White text color */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of elements */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.name {
    font-size: 24px;
    font-weight: bold;
}

.label {
    font-size: 18px;
    color: #fff; /* White text color */
    margin-top: 5px; /* Add margin to separate from the name */
}

.actions {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of buttons */
    justify-content: center; /* Center the buttons horizontally */
}

.button, .link {
    margin: 5px; /* Add margin around each button/link */
    padding: 5px 10px;
    border: none; /* Remove the border */
    border-radius: 5px;
    text-decoration: none;
    color: #fff; /* White text color */
    transition: background-color 0.3s;
}

.button:hover, .link:hover {
    background-color: #f0f0f0;
    color: #000; /* Change text color on hover for better visibility */
}

.separator {
    border: none;
    border-top: 1px solid #fff; /* White horizontal line */
    margin: 0;
    position: relative;
    width: 100%; /* Ensure it spans the full width */
}

.centered-paragraph {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.2em; /* Adjust the font size */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .name {
        font-size: 5vw; /* Responsive font size */
    }
    .label {
        font-size: 4vw; /* Responsive font size */
    }
    .button, .link {
        padding: 5px; /* Adjust padding */
        font-size: 4vw; /* Responsive font size */
    }
    .centered-paragraph {
        font-size: 4vw; /* Responsive font size */
        padding: 10px; /* Adjust padding */
    }
}
