body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: white;
}

.menu ul{
    display:flex;
    justify-content:space-around;
    align-items:center;
    list-style:none;
    margin:0;
    padding:15px;
    background:#272626;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.menu a:hover{
    color:#ff4e4e;
}

.galeria {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.columna {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.columna img {
    width: 100%;
    border-radius: 10px;
}

.about {
    text-align: center;
    padding: 40px;
}

.perfil {
    width: 200px;
    border-radius: 50%;
}

.contact{
    text-align:center;
    padding:40px 20px;
}

.contact h3{
    color:red;
    margin-bottom:20px;
}

form{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

form label{
    font-weight:bold;
    font-size:15px;
}

input, textarea{
    width:100%;
    padding:10px;
    border:1px solid grey;
    box-sizing:border-box;
}

textarea{
    height:80px;
    resize:none;
}

button{
    background:black;
    color:white;
    padding:10px;
    border:none;
    cursor:pointer;
    width:100%;
}

button:hover{
    background:red;
}