body {
    background-image: url(Designer.png); /* Reemplaza 'ruta_de_la_imagen.jpg' con la ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    font-family: 'Roboto',Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.perfil-container {
    width: 90%;
    max-width: 500px;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.perfil-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

h1, h2 {
    color: #0b45b1;
}

a {
    color: #061bd8;
    text-decoration: none;
}

@media (max-width: 600px) {
    .perfil-container {
        width: 100%;
        padding: 10px;
    }
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

label {
    margin-bottom: 5px;
}

input {
    margin-bottom: 15px;
    padding: 8px;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}

        /* Agrega tus estilos aquí */
        .enlace-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 20px;
        }
        .enlace-item {
            width: 100px;
            margin-bottom: 20px;
            text-align: center;
        }
        .enlace-item img {
            width: 100%;
        }
 