*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    width: 100%;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, #91289f, #d57dc4ad);
}

@keyframes fadeIn {
  from {
    top: 100vh;
  }
  to {
    top:0;
  }
}

@keyframes opacity {
      from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes moveBack {
    from{
        transform: none;
        box-shadow: none;

    }
    to{
        transform: perspective(500px) rotateX(4deg);
        box-shadow: rgb(0, 0, 0) 0px 50px 73px;

    }
}

.container{
    animation: fadeIn 1.7s ease forwards ,moveBack 1s ease 1.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #632b8e;
    min-width: 65%;
    height: auto;
    padding: 5px 62px 19px 44px;
    border-radius: 15px;
    position: relative;
    transition: ease 1s;
    
}

.container .container-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 281px;
    height: 281px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(248 173 129);
    flex-shrink: 0;
    position: relative;
    bottom: 100px;

}

.logo img{
    width: 100%;
}

.container-header .head-title{
    color: #b4abd5;
    width: 100%;
    text-align: center;
    font-size: 20px;
        position: relative;
    bottom: 40px;
    font-weight: 500;
        opacity: 0;
        animation: opacity 2s ease 2s forwards;
}


.container-header .title{
       padding: 17px;
    border-radius: 5px;
    text-decoration: none;
    color: #554d42;
    width: fit-content;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    opacity: 0;
    animation: opacity 2s ease 2.5s forwards;
    border: 1px solid #f98aff;
    color: #e8bebe;
    transition: ease 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.container-header .title i{
    font-size: 25px;
}
.container-header .title:hover{
background: #f98aff;
    color: #554d42;

}

.first-2-branch{
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.branch3 a{
    color: #b4abd5;
}
.branch3-icons{
    display: flex;
    justify-content: space-around;
    font-size: 40px;
    position: relative;
        opacity: 0;
        animation: opacity 2s ease 3s forwards;
}

.container-header .branch1 .branch2{
display: flex;
    width: 100%;
    justify-content: space-around;
}

.branch button{
    border: 1px solid;
    padding: 8px 20px;
    background: #b4abd5;
    border-radius: 8px;
}


a{
    text-decoration: none;
}
button{
    cursor: pointer;
}

.container-header .buttons{
    gap: 30px;
width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
}

.container-footer{
    display: flex;
    font-size: 40px;
    width: 115%;
    justify-content: space-between;
    position: relative;
}

.container-footer a{
    color: #b4abd5;
        opacity: 0;
        animation: opacity 2s ease 3s forwards;
}




@media (min-width: 360px) and (max-width: 480px) {
    .container {
        padding: 5px 25px 18px 25px;
        max-width: 90%;
    }
    .container-header .logo{
        width: 181px;
    height: 181px;
    }
    .container-header .head-title{
        bottom: 60px;
        width: 100%;
    }
    .container-header .title i {
    font-size: 16px;
}
    .buttons{
        gap: 30px;
    }
    .container-header .buttons .title{
        padding: 20px 10px;
        font-size: 18px;
    }

    .container-footer{
    justify-content: space-around;
    gap: 185px;
    }
    
}

@media (min-width: 481px) and (max-width: 767px) {
      .container {
        padding: 5px 50px 18px 50px;
        max-width: 90%;
    }
    .container-header .logo{
        width: 200px;
        height: 200px;
    }
    .buttons{
        gap: 30px;
    }
    
    
    .container-header .container-header .buttons .title{
        padding: 15px;
        font-size: 20px;
    }
    .container-footer{
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
   .container {
        padding: 5px 50px 18px 50px;
        max-width: 80%;
    }
    .container-header .logo{
    width: 270px;
    height: 270px;
    }
    .buttons{
        gap: 30px;
    }
    .container-header .buttons .title{
        padding: 18px;
        font-size: 25px;
    }
    .container-footer{
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container {
        padding: 5px 50px 18px 50px;
        max-width: 80%;
    }
    .container-header .logo{
width: 290px;
    height: 290px;
    }
    .buttons{
        gap: 30px;
    }
    .container-header .buttons .title{
        padding: 18px;
        font-size: 28px;
    }
    .container-footer{
        width: 100%;
    }
}

@media (min-width: 1200px) {
  
        .container-footer{
        width: 100%;
    }
    .container-footer a {
        font-size: 50px;
    }
}