* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-image: url('Images/Back.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: #0249b3;
  border-radius: 20px;
  padding: 30px 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
}

.name {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.buttons .btn {
  display: block;
  margin: 20px 0;
  padding: 12px;
  background-color: #ffffff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.buttons .btn:hover {
  background-color: #e1e1e1;
}

.socials {
  margin-top: 20px;
  padding-top: 50px;
}

.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #cccccc8f;
}

.social-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  vertical-align: middle;
  transition: opacity 0.3s;
  margin-bottom: 10px;
}

.social-icon-img:hover {
  opacity: 0.7;
}

.encabezados{
  color: #c6c6c6;
}