*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
header#cabecalho h1 {
    font-family: "Century Schoolbook", sans-serif;
   position: relative;
    font-size: 25pt;
    margin: 12px;

}
body{
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}
header {
    background: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}
/*Quando passar o mouse por cima vai
mudar de cor*/
nav a:hover {
    color: #868793;
    text-decoration: underline;
    margin: 0 15px;
    transition: color 0.3s;

}
/*Formatação e Cor da classe hero*/
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90vh;
    text-align: center;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}
/*animação do hero h1*/
@keyframes fadeIn {
    from {opacity: 0; transform: translate(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
/*Todas as sessões centralizadas ou otimizada para o centro*/
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}
/*Separando projetos feitos*/
.card-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
/*Colocando descrição dos projetos e seus devidos lugares dentro da caixinha*/
.card{
    background: #1e1e1e;
    flex: 1 1 250px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}
/*Fazendo a caixinha mexer*/
.card:hover {
    transform: translateY(-5px);
}

form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
/*Formatando area de entrada de contatos e área de texto*/
input, textarea {
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}
button {
    background: #00ffe1;
    border: none;
    padding: 12px;
    color: #111111;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}
/*Formatando e centralizando o rodapé*/
footer{
    background: #111111;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.social-icons a {
    color: #00ffe1;
    margin: 0 10px;
    font-size: 1.3rem;
    transform: translateY(-5px );
    padding: 10px;
}
#video2 {
    width: 65%; /* Fazem o player ocupar toda a largura do container */
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left:16%;


}

#video3 {
    width: 65%; /* Fazem o player ocupar toda a largura do container */
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left:16%;

}

nav#menu {
    display: block;
}
/* posição cabeçalho*/
header#cabecalho img#icone {
    position: absolute;
    left: 1000px;
    top: 40px;
}
/*Cor e tamanho do cabeçalho*/
header#cabecalho {
    border-bottom: 1px #606060 solid;
    height: 140px;
    background: linear-gradient(135deg, #150b25, #342f71, #24243e);
    font-weight: bold;
}
a#alvarindo{
    text-decoration: none;
    color: white;
}
img#computacao {
    width: 400px;
}
a#jovemra{
    text-decoration: none;
    color: white;
}

a#jovemra:hover{
    text-decoration: underline;
    color: #868793;
}
footer#rodape a {
    color: #ffffff;
    text-decoration: none;
}
footer#rodape:hover a {
    color: #868793;
}
