* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
  
    background: linear-gradient(to bottom right, #ecd0e0, #eb6981);
}

body {
    min-height: 100vh;  
    color: #b4265e;
    font-family: "Raleway", sans-serif;
    
    background-image: url(./bg-photo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

}

body.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}
  
body.fade-in {
    opacity: 1;
    transition: opacity 1s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1s ease-out forwards;
  }
  
  
  .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
  .fade-in-up:nth-child(2) { animation-delay: 0.4s; }
  .fade-in-up:nth-child(3) { animation-delay: 0.6s; }
  .fade-in-up:nth-child(4) { animation-delay: 0.8s; }
  .fade-in-up:nth-child(5) { animation-delay: 1s; }
  .fade-in-up:nth-child(6) { animation-delay: 1.2s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

main {
    width: 100%;
    /* height: auto; */
    min-height: 100%;        
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
 
.profile-photo {
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.profile-photo img {
    width: 150px;
}

.name {
    width: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 1rem;
    pointer-events: none;
}

.name img {
    width: 300px;
    fill: #b4265e;
}


/* --------------------------- HOVER */

/* .profile-photo:hover {
    transform: scale(.98) translateX(.1%);
}

.name:hover h1 {
    letter-spacing: .05rem;
} */

/* ----------------------------------*/

.principal {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-1,
.container-3 {
    width: 200px;
    height: 80px;

    border-radius: 1.5rem;
    /* background-color: #b4265e; */

    background: linear-gradient(to bottom right, #b4265e, #a0134b);

    margin-top: 2.5rem;
    position: relative;

    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
}

.container-1:active,
.container-2:active,
.container-3:active {
    transform: scale(0.90);
    transition: 1s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.social-icon:active {
    transform: scale(1.05);
    transition: 1s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.container-1 a,
.container-3 a {
    width: 200px;
    height: 80px;
    text-decoration: none;
}

.text-container {
    display: flex;
    justify-content: right;
}

.container-1 h1 {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    text-align: left;

    padding-left: 1.5rem;
}

.container-3 img {
    position: absolute;
    pointer-events: none;
    
    width: 70px;

    top: -3.46rem;
    right: 1rem;
}


.container-3 h1 {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    text-align: left;

    padding-left: 1.5rem;
    
}

.container-1 h1,
.container-3 h1 {
    width: 200px;
    height: 80px;
    color: #ecd0e0;
    line-height: 1rem;
    font-size: 1rem;

    font-weight: 100;
}

.container-1 p,
.container-3 p {
    color: #ecd0e0;

    font-size: 1rem;
    font-weight: 800;
    
    /* transform: translateY(-30%); */
}

.container-1 img {
    position: absolute;
    pointer-events: none;
    
    width: 80px;

    top: -2.60rem;
    right: .6rem;
}

/* --------------------------- */

.container-2 {
    width: 200px;
    height: 80px;

    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, #b4265e, #a0134b);

    margin-top: 2.5rem;    
    position: relative;
    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
}

.text-container-2 {
    display: flex;
    justify-content: right;

}

.container-2 a {
    text-decoration: none;
}

.container-2 h1 {
    width: 200px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: right;
    flex-direction: column;
    text-align: left;
    color: #ecd0e0;
    padding-left: 7rem;

    line-height: 1rem;
    font-size: 1rem;
    font-weight: 100;
}

.container-2 p {
    color: #ecd0e0;
    font-size: 1rem;
    font-weight: 800;
    
    /* transform: translateY(-30%); */
}

.container-2 img {
    position: absolute;
    pointer-events: none;
    
    width: 80px;

    top: -3.37rem;
    right: 7rem;
}

.follow-me {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: "Raleway", sans-serif;
    font-weight: 800;
    letter-spacing: .5rem;
    /* line-height: 1rem; */
    font-size: .6rem;
}

.follow-me i {
    color: red;
}

.socials {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.icon {
    color: #213b39;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: .5rem;
    text-decoration: none;
    color: #b4265e;
}

.icon a {
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;
}

.pipe {
    pointer-events: none;
}
