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

body {
  font-family: sans-serif;
  background-color: black;
  color: white;
  min-height: 100vh;
  padding: 0 200px;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
  width: 100%;
  padding: 0 200px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-logo {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(200, 200, 200);
  font-size: 16px;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: white;
}

/* CONTENIDO DE LA PAGINA */

.home {
  border-bottom: solid 1px #333;
  width: 100%;
  height: calc(100vh);
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 60px;
}

.home-info {
  width: 75%;
  width: calc(65%);
}

.home-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: auto;
  width: calc(35%);
}

.home-img img {
  border-radius: 50%;
  width: 100%;
}

.home p.about-me {
  color: rgb(200, 200, 200);
  margin: 20px 0;
  font-weight: bold;
  text-transform: uppercase;
}

.home p.name {
  width: 70%;
  font-size: 30px;
  margin: 20px 0;
  letter-spacing: 2px;
}

.home p.description {
  letter-spacing: 1px;
  margin: 20px 0;
  font-size: 16px;
  color: rgb(200, 200, 200);
}

/*
*/

/* Estilos para el contenedor de los botones */
.buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  padding-left: 0;
}

/* Estilos base para los botones */
.buttons button {
  padding: 10px 20px;
  border: 1px solid #aaa;
  border-radius: 5px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 16px;

  background-color: #f5f5f5;
  color: #333;

  background-color: #333;
  color: #fff;
  border-color: #333;

  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

/* Estilos al pasar el mouse (Hover) - NEGRO */
.buttons button:hover {
  background-color: #f5f5f5;
  color: #333;
  border-color: #333;
}

/* Estilos al hacer click (Active) */
.buttons button:active {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(1px);
}
