@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #2A303C, #2A303C); 
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
 
}

h2 {

    font-size: 16px;
    font-weight: 700;
    color: #fff;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    margin-top: 30px;

  
   
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.profile h1 img {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-left: 5px;
}

.profile p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    
}

.redes-sociales h2 {
   margin: 20px 0;
   font-size: 20px;
}


.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 70px;
}

.link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #2a303c;
    background-color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.link:hover {
    background-color: #f1e5a3;
}

.link span {
    flex-grow: 1;
    text-align: center; 
}



.links_img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit:cover;
}


.redes-sociales__iconos{ 
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
 
}

.redes-sociales__iconos a i {
    font-size: 30px;
    color:#fff ;
}

.redes-sociales__iconos a i:hover {
    color: #f1e5a3;
}


.work h2 {
    margin-bottom: 15px;
}

.work a {
 
    font-size: 14px;
    color:#fff ;
    text-decoration: none;
    margin-left: 10px;
}

.work a:hover {
    color: #f1e5a3;
}   

footer {
    margin-top: 20px;
    margin-top: auto;
}

footer p {
    color: #fff ;
}


footer p span {
    color: rgb(166, 0, 0);
}

footer p a {
    color: #f1e5a3;
    text-decoration: none;
}

footer p a:hover {
    color: #fff;
}
