* {
    box-sizing: border-box;
}
@font-face {
    font-family: 'Terminal Grotesque';
    src: url('../assets/fonts/terminal-grotesque.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Pilowlava';
    src: url('../assets/fonts/Pilowlava-Atome.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Yatra One';
    src: url('../assets/fonts/YatraOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gohu Font';
    src: url('../assets/fonts/GohuFont11NerdFontMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
	background: url('../assets/images/leaf2.png') center/cover repeat;
}

.page {
	display:block;
    color: linen;
	font-family: 'Terminal Grotesque';
}

.box {
	background: rgba(0, 0, 0, 0.75);
	border: 2px solid linen;
	margin: 20px;
}

.socials {
  font-family: 'Gohu Font';
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
  width: 100%;
  box-sizing:border-box;
  overflow:hidden;
  padding-left: 20px;
  align-items: center;
}
.socials a {
  color: linen;
  text-decoration: underline;
  display: inline-block;
  line-height: 1;
}
.socials a:hover {
  text-decoration-style: wavy;
}

.content {
    display: flex;
    flex: 1 1 50%;
	flex-wrap: wrap; /* Si no caben las dos columnas, la derecha bajará en vez de salirse */
    max-width: 100%; /* No permite que sea más ancho que el borde blanco */
    overflow: hidden; /* Corta lo que se salga (como medida de emergencia) */
	justify-content: center;
	box-sizing: border-box;
    padding: 20px;
	padding-top: 0px;
}
.content > div {
	flex: 1;
}

.leftcol {
	font-family: 'Terminal Grotesque';
	display: block;
}

.header {
  display: flex;
  flex: 1 1 50%;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  text-align: center;
  gap: 20px;
  padding-top: 0px;
}
.header > div {
	flex: 1;
}
h1 {
	font-family: 'Pilowlava';
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 1;
	text-align: center;
	margin: 0;
}
.hare {
	font-size: clamp(3.5rem, 8vw, 7rem);
}
.about {

}

.portfolio {
	display: block;
}
h2 {
	font-size: 2.5rem;
	line-height: 1;
	padding-top: 2px;
	padding-bottom: 2px;
}
p {
	font-size: 1.5rem;
    line-height: 1;
	padding-top: 2px;
	padding-bottom: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    min-height: 150px;
}

.rightcol {
	display: block;
	max-width: 100%; /* Evita que la columna derecha sea más ancha que la pantalla */
}
.iconplayer {
	justify-content: center;
	padding-top: 0px;
}
.video-placeholder {
    width: clamp(300px, 50vw, 1080px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
	max-width: 100%; /* La imagen nunca será más grande que su contenedor */
    height: auto;
}
.info {
	justify-content: center;
}
.copyright {
	text-align:right;
	padding-right:20px;
}
h5 {
