@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: myfont;
    src: url('crewniverse2.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #ffff;
    color: #333;
    text-align: center;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

header {
    background: linear-gradient(to right, #D13F8F 100%, #663572);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1001; /* Mantém a navbar na frente */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative; /* Para o ::after funcionar */
    padding-bottom: 2px;
}

nav ul li a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.dropdown {
    position: relative; 
    z-index: 1002; 
}

/* Estilização do submenu download na navbar */
.dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background: #DBC8E0;
    transform: none;
    justify-content: center;
    margin-right: -10px;
    border-radius: 8px;
    width: max-content;
    min-width: auto;
    box-sizing: border-box;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1050; 
    white-space: nowrap; 
    overflow: hidden; 
    padding: 3px 0;
    margin: 0;
}

/* Exibir o submenu ao clicar */
/* Mostra o submenu APENAS quando ele tiver a classe 'active' */
.dropdown-menu.active {
    display: block;
}

/* Melhorando a acessibilidade e estilo */
.dropdown-menu li {
    list-style: none;
    text-align: center;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 6px 10px;
    text-decoration: none;
    color: #663572;
    font-size: 14px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #D13F8F;
    color: white;
}


header {
    position: relative;
    z-index: 1001;
}

/* Sessão barra 2  */
.hero {
    position: relative;
    background: #6A2E66;
    color: white;
    padding: 50px 20px;
    text-align: center;
    z-index: 1;

}
.hero p{
    background-color: #DBC8E02B; /* Cor do fundo da caixa */
    padding: 15px 20px; /* Espaçamento interno */
    border-radius: 30px; /* Borda arredondada */
    max-width: 750px; /* Largura máxima da caixa */
    text-align: center; /* Centralizar o texto dentro da caixa */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    margin: 0 auto;
    display: block;
    font-size: 20px;
}
.hero img[alt="ativo 1"]{
    position: absolute;
    bottom: -40px; /* Faz a imagem encostar na borda inferior */
    left: -1px; /* Alinha a imagem à esquerda */
    width: 120px;
    height: auto; /* Mantém a proporção da imagem */
    opacity: 0.3;
    transform: rotate(-9.11deg);
}
.hero img[alt="ativo 2"] {
    position: absolute; /* Permite posicionamento absoluto */
    bottom: 50px; /* Ajuste fino na parte inferior */
    right: -5px; /* Mantém alinhado à direita */
    width: 120px;
    height: auto;
    opacity: 0.3;
    transform: rotate(11.01deg);
}
.hero img[alt="flor"]{
    position: absolute;
    bottom: -30px;
    width: 50px;
    height: auto;
}

.hero h1 {
    font-weight: normal;
    line-height: 2.0;
    letter-spacing: 2.5px;
    font-size: 28px;
    font-family: myfont;
    color: #ffff;
}

/* Classes para destaque de fonte*/
.destaque {
    color: #8CD3D0;
    font-weight: bold;
}

.destaque2 {
    font-weight: normal;
    font-family: myfont;
}

.efeito-mockup,
.efeito-app-txt,
.efeito-h2,
.efeito-card,
.efeito-titulo,
.efeito-tool-card{
  visibility: hidden;
}

/*Sessão 3 mockup e funcionalidades do app */
.content {
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding: 50px;
    background-color: #F8F3E8;
    margin-bottom: -10px;
    gap: 3%;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 80px;
    line-height: 1.9;
    margin-bottom: 150px;
    margin-left: -30px;
}
/* Container dos botões */

.buttons {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Alinha no topo */
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Wrapper do iOS - AQUI FICOU MAIS LARGO */
.ios-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px; /* Aumentei de 190px para 280px */
}


/* Container do aviso */
.ios-aviso {
    font-size: 0.7rem; 
    color: #4a4a4a;
    margin-top: 12px;
    background-color: #ffffff;
    border: 1px solid #d4c2fc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 12px;
    border-radius: 10px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    /* Ajustei para 1.3 para não cortar letras como 'g' ou 'j' */
    line-height: 1.3; 
}

/* TÍTULO: Usa o seletor '>' para pegar apenas o negrito solto (o título) */
.ios-aviso > strong {
    color: #6A2E66;
    display: block; /* O título continua quebrando linha */
    margin-bottom: 8px; /* Espaço entre o título e a lista */
    text-align: center;
    font-size: 0.8rem; /* Um pouco maior que o texto da lista */
}

/* LISTA: Garante que os negritos DENTRO da lista fiquem na mesma linha */
.ios-aviso li strong {
    display: inline; /* Isso conserta o buraco! */
    color: #6A2E66;
    font-weight: 700;
}

.ios-aviso ol {
    padding-left: 20px;
    margin: 0;
}

.ios-aviso li {
    margin-bottom: 4px; /* Espaçamento suave entre os passos */
}

.mockup {
    position: relative;
    width: auto;
    max-width: 350px; /* Ajuste conforme necessário */
    margin: 0;
    padding: 0;
    border-radius: 20px; 
    overflow: hidden;
    transform: scale(0.8); /* Tente 1 ao invés de 1.2 */
    margin-top: -100px;
    margin-left: 50px;
}

.mockup-part {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 20px;
}


 .screen-container img {
    filter: drop-shadow(0px 4px 6px rgba(128, 0, 128, 10));

}
.screen-container {
    position: relative;
    width: 100%;
    height: auto;
}

.screen {
    width: 100%;
    cursor: pointer;
}

.hidden {
    display: none;
}

.app-info {
    margin-left: -40px; /* Ajuste o valor conforme necessário */
}

.app-text {
    text-align: left;
    max-width: 400px;
    line-height: 1.5;
    color: #663572;
    margin-top: 50px;
    margin-bottom: 20px;
    max-width: 100px;
}
.app-text h2{
    text-decoration: underline;
    text-decoration-color: #8CD3D0; /* Cor do sublinhado */
    text-decoration-thickness: 16%; /* Espessura da linha */
    text-underline-offset: 6px; /* Distância entre o texto e a linha */
}
.buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Corrigido de 'left' para 'flex-start' */
    gap: 10px;
}

.buttons a {
    display: flex; /* Garante que o link envolva a imagem corretamente */
    width: 130px; /* Tamanho padrão */
    height: 50px;
}

.buttons img {
    width: 100%; /* Ocupará o espaço do link */
    height: 100%;
    object-fit: contain; /* Mantém a proporção da imagem */
}

.buttons a img {
    transition: transform 0.3s ease-in-out;
}

.buttons a img:hover {
    transform: scale(1.1);
}

/* */
.features {
    padding: 40px 20px;
    margin-left: 130px;
    margin-top: 50px;
    margin-bottom: 150px;
    text-align: left;
    flex: 1;
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2;
    
}

.features h2 {
    font-size: 16px;
    color: #663572;
    margin-bottom: 20px;
    letter-spacing: 1px;
    background-color: #8CD3D080;
    border-radius: 30px;
    padding: 15px 135px;
}

.features h3{
    margin-top: 10px;
}

.features p{
    margin-top: 8px;
}


.cards {
    display: flex;
    justify-content: center; /* Centraliza os cards */
    gap: 40px; /* Espaço entre os cards */
    font-size: 12px;

}

.card {
    display: flex;
    flex-direction: column; /* Empilha os elementos na vertical */
    align-items: center; /* Centraliza o conteúdo */
    text-align: center;
    width: 130px; /* Define um tamanho fixo para os cards */
    
}

.card-image {
    position: relative; /* Adiciona um referencial para a imagem */
    width: 140px;
    height: 140px;
    background-color: #D13F8F;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Para evitar que a imagem ultrapasse os limites */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.card-image img {
    position: absolute;
    width: 82.5px;
    height: 67.5px;
}

/* Barra de info`s com circulos*/
.barra-info {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D13F8F;
    position: relative; /* Adiciona posicionamento relativo */
    flex-direction: row;
    gap: 300px;
    height: 84px;
}

.info-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Centraliza o texto horizontalmente */
}

.circulo {
    width: 236px;
    height: 236px;
    background-color: #DBC8E0;
    border-radius: 50%;
    position: absolute; /* Adiciona posicionamento absoluto */
    top: 50%; /* Centraliza verticalmente */
    transform: translateY(-50%); /* Ajusta o posicionamento vertical */
    gap: 100px;
    flex-direction: column;
    border: 3px solid #8CD3D0;

}

.info-item p {
    margin-top: 30%;
    text-align: center;
    font-size: 15px;
    position: relative; /* Garante que o texto fique sobre o círculo */
    z-index: 1; /* Garante que o texto fique na frente do círculo */
    color: #663572;
    font-family: myfont;
    line-height: 2;
}
/*Info`s sobre as ferramentas do APP*/
.tools {
    text-align: center;
    padding: 40px;
    padding-top: 8%;
}

.tools h2 {
    display: flex;
    color: #663572;
    align-self: self-start;
    font-size: 20px;
    padding: 5%;
    margin-left: 10%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Duas colunas */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tool-card {
    background-color: #8CD3D080; /* Cor suave de fundo */
    padding: 20px;
    width: 90%;
    border-radius: 18px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: left;
    border: 4px solid #0D9B9B;
    position: relative; /* Para alinhar o ícone à direita */
    transition: transform 0.3s ease-in-out;
}
.tool-card:hover {
    transform: scale(1.03);
}

.title-container {
    display: flex;
    justify-content: space-between; /* Ícone à direita */
    align-items: center;
    position: relative;
}

.title-container h3 {
    margin: 0;
    font-size: 20px;
    padding: 3%;
    font-family: myfont;
    font-weight: normal;
}

.title-container i {
    font-size: 50px;
    color: #663572;
    position: absolute;
    right: 10px; /* Ajusta o ícone para ficar na lateral direita */
    padding: 2%;
}

.tool-card p {
    max-width: 85%;
    margin: 10px 5px 0;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

/* Cor diferente para os itens específicos */
.tool-card:nth-child(1),
.tool-card:nth-child(4),
.tool-card:nth-child(5) { 
    background-color: #DBC8E0; /* Roxo claro */
    border-color: #D13F8F;
}
.tool-card:nth-child(6){
    height: 80%;
}
/* Classe para destaque de fonte*/
.strong {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-color: lightblue;
    text-decoration-thickness: 2px;
}
/*Sessão barra de chamada para baixar o APP*/
.barrainfo2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D13F8F;
    padding: 20px;
    width: 100%;
    height: 250px;
    margin: auto;
    margin-top: 80px;
}
.barrainfo2 h1{
    display: flex;
    max-width: 700px;
    font-size: 28px;
    color: #ffff;
    line-height: 2;
    padding-left: 200px;
    text-align: left;
    margin: 0 auto;
}
.barrainfo2-imagem{
    display: flex;
    align-items: flex-end;
}
.barrainfo2 img{
    max-width: 279px;
    width: auto;
    margin-bottom: 117px;
    align-self: flex-end;
    margin-right: 200px;
}
/*Sessão redirecionamento para as redes sociais*/
.redes-sociais, .links-uteis {
    text-align: center;
    padding: 20px;
    padding-bottom: 3%;
}
.redes-sociais h2{
    color: #663572;
    font-family: myfont;
    font-size: 28px;
    letter-spacing: 1px;
    margin-top: 5%;
    font-weight: normal;
    margin-bottom: 3%;
}
/* Container dos botões */
.link {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre os botões */
    margin-top: 15px;
}

/* Botão de redes sociais */
.buttons-midias {
    display: flex;
    align-items: center;
    width: 20%;
    height: -2%;
    gap: 10px; /* Espaço entre ícone e texto */
    background-color: #DBC8E0; /* Cor rosa claro do botão */
    padding: 10px 20px;
    border-radius: 30px; /* Bordas arredondadas */
    border: 3px solid #D13F8F; /* Borda rosa escuro */
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25); /* Sombra */
    transition: transform 0.2s ease-in-out;
}

/* Efeito de hover nos botões */
.buttons-midias:hover {
    transform: scale(1.05);
}

/* Ícones das redes sociais */
.buttons-midias img {
    width: 20px; /* Ajuste do tamanho do ícone */
    height: 20px;
    align-items: center;
    justify-content: flex-start;
}

/* Links estilizados */
.buttons-midias a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    font-family: Arial, sans-serif;
}
/*Sessão redirecionamento para post do Instagram*/
.links-uteis h3{
    margin-bottom: 3%;
}
.links-uteis{
    margin-bottom: 10px;
}
.links a img{
    transition: transform 0.2s ease-in-out;
}

.links a img:hover{
    transform: scale(1.05);
}
/*Sessão dos parceiros do APP*/
.partners {
    line-height: 2.5;
    margin: 80px 0;
}
.partners h2 {
    padding-bottom: 30px; 
    color: #663572;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.logos img {
    width: 100px;
}

footer {
    background: #EFEAD2;
    color: black;
    padding: 30px;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
/* Estilo para o menu responsivo */

.menu-mobile{
    display: none;
    background-color: #DBC8E0;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    overflow: hidden;
    transition: .5s;
    z-index: 99999;
}
.btn-abrir-menu{
    font-size: 40px;
    display: none;
}
.menu-mobile.abrir-menu{
    width: 56%;
}

.menu-mobile.abrir-menu~ .overlays-menu{
    display: block;
}
.menu-mobile .btn-fechar i{
    color: #663572;
    font-size: 40px;
}

.menu-mobile .btn-fechar{
    display: flex;
    padding: 20px 5%;
    justify-content: flex-start;
}
.menu-mobile nav ul{
    text-align: right;
    flex-direction: column;
}
.menu-mobile nav ul li{
    padding: 20px 4%;
}
.menu-mobile nav ul li a{
    font-size: 25px;
    font-weight: 600;
    color: #663572;

}
.overlays-menu{
    background-color: #0000001e;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;

}

/* Responsividade */
@media (max-width: 768px) {

    /* menu hamburguer*/
    #menu {
        display: none;
    }

    /* Mostra o menu mobile ao ativar */
    .menu-mobile{
        display: block;
    }

    .btn-abrir-menu{
        display: block;
    }
    nav ul li a.active::after {
        background-color: #663572;
    }
    .menu-mobile.dropdown-menu{
        display: flex;
        margin-right: 0%;
    }
    .menu-mobile.abrir-menu{
        text-align: right;
        align-items: self-end;
    }
    .dropdown-menu {
        position: static; /* Para que fique no fluxo do layout */
        transform: none; /* Remove deslocamento lateral */
        background: #DBC8E0;
        width: 100%; /* Ocupa toda a largura do contêiner pai */
        border-radius: 0;
        box-shadow: none;
        width: max-content;
        min-width: auto;
        text-align: center;
      }
    .dropdown-menu li a:hover {
        width: fit-content;
        color: white;
    }

    /* Ajustes no hero */
    .hero {
        padding: 30px 10px;
    }
    .hero h1{
        font-weight: 100;

    }

    .hero p {
        font-size: 16px;
        padding: 10px;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero img[alt="ativo 1"],
    .hero img[alt="ativo 2"],
    .hero img[alt="flor"] {
        display: none; /* Oculta imagens decorativas em telas pequenas */
    }

    /* Ajustes de layout */
    .content {
        flex-direction: column;
        justify-content: center;
    }

    .app-info {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin: 0;
        padding: 0;
    }

    .mockup {
        transform: scale(1);
        margin: 0 auto;
        align-items: center;
    }

    .app-text {
        text-align: center;
        max-width: 90%;
    }

    .buttons {
        align-items: center;
    }

    .features {
        margin-left: 0;
        align-items: center;
        text-align: center;
        margin-top: -1%;
        margin-bottom: 5%;
    }

    .features h2 {
        padding: 15px 30px;
        align-self: flex-start;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card {
        width: 90%;
        max-width: 250px;
    }

    /* Ajustes para a barra de informações */
    .barra-info {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 30px 0;
    }

    .circulo {
        display: flex;
        width: 150px;
        height: 150px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .info-item p {
        font-size: 14px;
        margin: 0;
    }

    .tools {
        display: flex;
        flex-direction: column; /* ou row, conforme necessário */
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        margin-top: 5%;
    }
    .tools .tool-card{
        width: 100%;
    }
    .tools h2{
        text-align: left;
        width: 100%;
        margin-left: 2%;
        padding: 5% 5%;
        line-height: 3;
        font-size: 20px;
    }  
    .tools h3{
        font-weight: normal;
        font-size: 18px;
    }
    .title-container {
        display: flex;
        align-items: center;
        gap: 8px; /* controla o espaço entre o título e o ícone */
      }  

    .tool-card:nth-child(4) .title-container h3 {
        font-size: 14px; /* ou 14px, ajuste conforme necessário */
      }

    .tool-card:nth-child(6){
        height: 100%;
    }
    .tool-card:nth-child(7){
        height: 100%;
    }
    
    .grid-container {
        grid-template-columns: 1fr; /* Muda para uma única coluna */
        justify-content: center;
    }

    .barrainfo2 {
        flex-direction: line;
        justify-content: flex-end;
        text-align: center;
        height: 150px;
        padding: 20px;
        overflow: visible;
        margin-top: 30%;
    }

    .barrainfo2 h1 {
        padding-left: 0;
        text-align: center;
        font-size: 12px;
    }

    .barrainfo2 img {
        display: flex;
        width: 100%;
        height: auto;
        margin-top: auto;
    }

    .redes-sociais h2{
        line-height: 1.5;
    }
    .link {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        
    }
    .buttons-midias {
        display: flex;
        align-items: center;
        width: 75%;
        height: -2%; 
    }
    .links  img{
        width: 280px;
        height: 330px;
    }

    .partners {
        margin: 40px 0;
    }

    .logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    .logos img {
        max-width: 80px;
    }
}
/* ===== MEDIA QUERY PARA TABLET (768px a 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    header {
        flex-direction: line;
        align-items: flex-start;
        padding: 20px 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 18px;
        padding: 12px 18px;
    }

    .content {
        flex-direction: column;
        padding: 30px 20px;
    }

    .app-info {
        flex-direction: column;
        align-items: center;
        margin: 0;
        gap: 40px;
    }

    .mockup {
        transform: scale(0.95);
        margin: 0 auto;
    }

    .app-text {
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }

    .features {
        margin: 50px auto;
        padding: 20px;
        justify-items: center;
        align-items: center;
    }

    .features h2 {
        padding: 10px 30px;
        font-size: 14px;
        display: flex;
        align-self: center;
        margin-bottom: 10%;
    }

    .cards {
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: row;
        width: 150%;
    }
    .card p{
        display: flex;
        width: 50%;        
    }

    .barra-info {
        display: flex;
        flex-direction: row;
        gap: 30%;
        height: auto;
        padding: 40px 0;
        text-align: center;
    }

    .circulo {
        display: flex;
        width: 180px;
        height: 180px;
        justify-content: center; /* centraliza na horizontal */
        align-items: center;     /* centraliza na vertical */
        text-align: center;
    }

    .barra-info p{
        margin: 0;
    }
    .info-item p {
        font-size: 14px;
    }

    .tools {
        display: flex;
        justify-content: center;
        padding: 30px 20px;
        align-items: center;
        box-sizing: border-box;
        padding-right: 6%
    }
    .grid-container {
        display: grid;
        flex-direction: row;
        grid-template-columns: repeat(2, 1fr); /* Duas colunas */
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
    }
    .tool-card:nth-child(7){
        height: 65%;
    }
    
    .tool-card{
        width: 100%;
    }

    .barrainfo2 {
        display: flex;
        flex-direction: row;
        text-align: center;
        height: 180px;
        gap: 5px;
        padding: 0 20px;
        align-items:flex-end ;
    }

    .barrainfo2 h1 {
        padding-left: 0;
        margin: 0 auto;
        font-size: 22px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 35px;
        width: 70%;
    }

    .barrainfo2 img {
        margin: 0 auto;
        max-width: 300px;
        align-self: flex-end;
    }

    .buttons-midias {
        width: 35%;
    }
    .links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

    
}