/*
Theme Name: Imaray Theme
Author: Orbet Lozada
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@font-face {
  font-family: "Poppins-Regular";
  src: url("fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins-Black";
  src: url("fonts/Poppins-BlackItalic.ttf");
}

body {
  margin: 0;
}

.fondo {
  background-image: url("/wp-content/uploads/2025/10/fondo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.content {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(90%, -50%);
  text-align: center;
}

.content p {
  font-family: "Poppins-Regular", sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
}
.content p span {
  font-family: "Poppins-Black", sans-serif;
  color: #ffffff;
}

.content-redes {
  text-align: center;
  padding-top: 30px;
}
.titulo-image {
  display: block;
}
.image-logo {
  padding-top: 10px;
}

@media (max-width: 580px) {
  .content {
    transform: translate(50%, -50%);
    top: 56%;
  }
  .content-redes {
    display: flex;
  }
  .content-redes img {
    height: 95px;
  }
  .image-logo {
    height: 80px;
  }
  .titulo-image {
    height: 90px;
  }
  .fondo {
    background-position: right;
  }
}
