body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f5f5f5;
    color: var(--text);
}

.container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: var(--background);
}

.header {
    height: 25%;
    display: flex;
    align-items: center;
    background-color: var(--footer);
    padding: 20px;
    color: white;
    position: relative;
}

.profile-picture {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
    text-align: center;
}

.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* border: 5px solid var(--accent); */
    filter: drop-shadow(0px 0px 14px var(--accent));
}

.info {
    /* color: black; */
    position: absolute;
    top: 20px;
    left: 20px;
    flex: 2;
    text-align: center;
}

.about-me {
    /* color: black; */
    flex: 1;
    text-align: left;
    position: absolute;
    right: 20px;
    top: 20px;
    max-width: 255px;
}

.about-me h2 {
    margin-top: 0;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.description, .contact {
    flex: 1;
    padding: 50px 20px 20px 20px;
    text-align: center;
    /* color: black; */
}

.contact h2 {
    
    margin-bottom: 10px;
}

.contact button {
    display: block;
    margin: 0 auto 10px;
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.contact button:hover {
    transition: 0.5s;
    color: white;
}




.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown-content {
    border-radius: 10px;
    display: none;
    position: absolute;
    background-color: var(--accent);
    color: var(--textOtroModeLige);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    border-radius: 10px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .btnVolver{
    border: none;
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--accent);
    color: var(--text);
}
.btnVolver:hover{
    transition: 0.5s;
    color: white;
    cursor: pointer;
}
a{
    color: black;
    text-decoration: none;
}
.p10top{
    padding-top: 5px;
}


@media (max-width: 700px) {
 



.profile-picture {
    position: absolute;
    left: 33%;
    top: 74%;
    transform: translateX(-50%);
    text-align: center;
}

.info {
    /* color: black; */
    position: absolute;
    top: 20px;
    left: 15px;
    flex: 2;
    text-align: center;
    width: 10%;
}

.about-me {
    /* color: black; */
    flex: 1;
    text-align: left;
    position: absolute;
    right: 20px;
    top: 20px;
    max-width: 144px;
    font-size: .8rem;
}


.content {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    /* width: 100%; */
    /* flex-wrap: wrap; */
    position: absolute;
    top: 44%;
}

.description, .contact {
    flex: 1;
    padding: 0;
    text-align: center;
    /* color: black; */
    font-size: .7rem;
}



.contact button {
    display: block;
    margin: 0 auto 7px;
    padding: 4px 6px;
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.dropdown-content {
    min-width: 0;
}
}