@import url('../root/style.css');

body {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    flex-direction: column;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

header {
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    height: 50%;
    flex-direction: column;
}


.equipe {
    width: 50%;
    height: 100px;
    background-color: #000000;
    border: solid 2px white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #00ff0d;
    font-weight: 100;
    font-size: 20px;
    
}

section {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;

    img {
        height: 200px;
        width: 300px;
    }
}

main {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:20px;
    flex-direction: column;
}

.container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url("./imgs/pexels-buxteh-30221614.jpg");
    background-position: center;
    background-size: cover;
    gap: 50px;
    flex-wrap: wrap;
    background-color: black;
}
.exit {
    width: 100%;
    gap: 2px;
}
.Pointer {
    margin-top: 15px;
    width: 20%;
    height: 10%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;

    .color1 {
        background-color: #cc2626fd;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        transition: 1ms all;
 }

    .color2 {
        background-color: #d9ff00;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        transition: 1ms all;
 }

    .color3 {
        background-color: #00ff0d;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        transition: 1ms all;

 }
 .color1:hover {
            transform: scale(1.1);
        }
 .color2:hover {
            transform: scale(1.1);
        }
 .color3:hover {
            transform: scale(1.1);
        }

}


.Block-2 {
    width: 245px;
    height: 400px;
    transition: 1s all ease;
    background-image: linear-gradient(163deg, #ff00f2 0%, #00ff0d);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.Block-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(17, 16, 16);
    width: 280px;
    height: 400px;
    gap: 15px;
    border: solid 4px;
    border-radius: 30px;
    transition: 0.5s all ease;
    gap: 10px;
    padding: 10px;
    border:  2px silver;
}

.Block-1:hover {
    transform: scale(0.92);
    border-radius: 20px;
    border:  2px silver;
}

.Block-2:hover {
    box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
}


.banner {
    background-position: center;
    background-size: cover;
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #ff00d4;  
    border-radius: 20px;  
}

.banner:hover {
    border: 1px solid #00ff0d;
}

.Perfil {
    background-color: rgb(255, 255, 255);
    background-image: url("../../imgs/Cards-imgs/image.png");
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    height: 80px;
    width: 80px;
    border: solid 4px white;
    box-shadow: 0px 0px 13px 5px rgba(0,0,0,0.45);
    margin-top: 10px;
}

.Perfil {
    background-image: url("../../imgs/Cards-imgs/dementador.png");
}


.conteudo {
    height: 50%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}


.Name {
    width: 90%;
    height: 20%;
    background-color: aliceblue;
    border-radius: 7px;
    border: 2px solid white;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    h2 {
        font-size: 15px;
        font-weight: 500;
        font-style: normal;
        color: rgb(0, 0, 0);
    }
    
}
.alinhamento-stacks {
    width: 100%;
    height: 78%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.Name-stack {
    height: 20%;
    width: 50%;
    margin-bottom: 7px;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #0d1117;
    border: solid 1px #333;
    color: #ff00d4;
    text-align: center;
    transition: 1ms all;
    font-size: 14px;
    h1 {
        font-size: 14px;
    }
}
.stacks {
    width: 90%;
    height: 80%;
    background-color: #0d1117;
    border-radius: 7px;
    border: 1px solid #ff00d4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    img {
        width: 22%;
        height: 22%;
        transition: 2ms all;
    }

    img:hover {
        transform:scale(1.2);
    }
}


.stacks:hover {
    border: 1px solid #00ff0d;
}

.Name-stack:hover {
    color: #00ff0d;
    transform: scale(1.1);
}


.code-editor {
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #0d1117;
  color: #ff00ea;
  font-family:system-ui,apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",monospace;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 10px;
  padding: 15px;
  height: 10px;
  width: 78%;
  border: 1px solid #333;
  margin-bottom: 10px;
  transition: 1ms all;
}

.code-editor:hover {
    color: #00ff0d;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {

	header {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
}

#lucas {
    background-image: url("../../imgs/Cards-imgs/lukes.webp");
}

#miguel {
    background-image: url("../../imgs/Cards-imgs/miguel.webp");
}

#teteu {
    background-image: url("../../imgs/Cards-imgs/teteu.webp");
}

#davi {
    background-image: url("../../imgs/Cards-imgs/davi.webp");
}
