body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2e090; /* yellow */
    color: #fff; /* White text color */
}

.container {
    display: flex;
    flex-direction: column; /* Adjust layout for smaller screens */
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.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; /* Ensure buttons wrap on smaller screens */
    margin-top: 10px;
}

ul {
    padding-left: 20px; /* Adjust padding for better alignment */
}

li {
    margin-left: 0; /* Adjust margin for better alignment */
    list-style-position: inside; /* Ensure bullets are inside the list item */
}

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

.button:hover, .link:hover {
    background-color: #f0f0f0;
}

.separator {
    border: none;
    border-top: 1px solid #fff; /* White horizontal line */
    margin: 0;
    position: relative;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px; /* Width of the vertical line */
    background-color: #fff; /* White color for the vertical line */
}

/* Adjust the position of the vertical lines */
.separator::before {
    left: calc(30% - 60px); /* Adjust the left position before the Home button */
}

.separator::after {
    right: calc(50% - 60px); /* Adjust the right position after the Home button */
}

.centered-paragraph {
    width: 100%;
    text-align: left;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.2em; /* Adjust this value to make the font size appropriate for mobile */
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
        align-items: center; /* Center align items on smaller screens */
    }
    
    .name {
        font-size: 6vw; /* Adjust font size for smaller screens */
    }
    
    .label {
        font-size: 5vw; /* Adjust font size for smaller screens */
    }

    .actions {
        justify-content: center; /* Center actions on smaller screens */
    }

    .button, .link {
        font-size: 4vw; /* Adjust font size for smaller screens */
        margin-left: 5px;
        padding: 5px;
    }
    
    ul {
        padding-left: 20px; /* Adjust padding for mobile */
    }

    li {
        margin-left: 0; /* Adjust margin for mobile */
        font-size: 4vw; /* Adjust font size for smaller screens */
    }

    .centered-paragraph {
        font-size: 4vw; /* Adjust font size for smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}
