
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #9cb5dc, #c3cfe2);
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

a{
    color: #6aa7d8;
}


header {
    background-color: #01094a;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(30, 175, 215, 0.49);

}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
     box-shadow: 0 2px 6px rgba(30, 175, 215, 0.542);
}

.menu li a:hover {
    color: #78ebfb;
}


h1 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
    color: #22223b;
}


.foto-perfil {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.foto-perfil img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    object-fit: cover;
    border: solid;
    box-shadow: 0 2px 6px rgba(2, 24, 225, 0.479);
}


.sobre-mim {
    background-color: #e3e9f5;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 2px 6px rgba(30, 175, 215, 0.386);
}

.sobre-mim h2 {
    color: #22223b;
    margin-bottom: 10px;
    font-size: 20px;
}

.sobre-mim p {
    font-size: 20px;
}

footer p {
  background-color: #00243d;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  font-size: 16px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgb(6, 93, 117);


}
