@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
  
a {
    text-decoration: none;
}
  
body {
    font-family: "Poppins", sans-serif;
    background-color: rgb(170, 238, 255);
    
}

/* background */

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send background behind content */
  }

.absolute{
    position: absolute;
    top: 58px !important;
    inset: 0;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
}

.justify-center{
    justify-content: center;
}

.bg-shape1{
    width: 400px;
    height: 400px;
    border-radius: 9999px;
    position: relative;
    animation: one 10s infinite;
}

.bg-shape2{
    width: 300px;
    height: 300px;
    border-radius: 9999px;
    position: relative;
    animation: two 10s infinite;
}


/* background */


  
.section__container {
    min-height: 90vh;
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__container_home {
    min-height: 90vh;
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    
    display: flex;
    justify-content: center;
    align-items: start;
    text-align: left;
}
  
.content_home {
    display: flex;
    flex-direction: column;
    justify-content: left;
}
  
.subtitle {
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
  
.title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
  
.title span {
    font-weight: 600;
    color: rgb(88, 102, 255);
}
  
.description {
    line-height: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.icons{
    column-gap: 25px;
}

.icon{
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    color: #000000;
    border-radius: 50%;
    outline: 2px solid #000000;
    transition-property: outline-offset, outline-color background-color;
    transition-duration: .25s;
    margin: 0 5px;
}

.icon:hover{
    outline-offset: 4px;
}

.icon:hover i{
    animation: shake .25s;
}


@keyframes shake {
    10%{transform: rotate(15deg);}
    20%{transform: rotate(-15deg);}
    30%{transform: rotate(15deg);}
    40%{transform: rotate(-15deg);}
}

/* Footer styles */
footer {
    color: #333;  /* Adjust text color if needed */
    padding: 1rem;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1rem;
    background-color: transparent;  /* No background color */
}

.footer-content p {
    margin: 0;
}

/* Ensure that the content occupies enough height for footer positioning */
body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section__container {
    flex-grow: 1;
}

footer a{
    color: #333;
    text-decoration: none;
}

footer a:hover{
    text-decoration: none;
}

@media (max-width: 768px) {
    .title{
        font-size: 2.5rem;
    }

    .subtitle{
        font-size: 0.9rem;
    }

    .description{
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    footer {
    color: #333;  /* Adjust text color if needed */
    padding: 1rem;
    text-align: center;
    width: 100%;
    position:relative;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1rem;
    background-color: transparent;  /* No background color */
}
.cont_pic_home img{
    width: 90px;
    height:auto;
    border: rgba(88, 102, 255, 0.507) solid 2px;
}

}

.logo img{
    border-radius:50%;
    width: 10%;
    height: 10%;
    opacity: 80%;
    
}


.pic_home{
    width: 190px;
    height:auto;
    display: flex;
    border: rgba(88, 102, 255, 0.507) solid 5px;
    border-radius: 40px 0px 40px 0px;
}

.cont_pic_home{
   margin-left: 2%;
   margin-right: 2%;
   align-items: center;
}