So I'm new to this whole blogging thing and I wanted to make sure my site was responsive. I added the meta viewport tag, but when I tested it out on Google Chrome with different window sizes, my text just disappeared! Here's a snippet of the CSS and HTML code that's causing me trouble:
.hero{
background-color: firebrick;
display: flex;
justify-content: center;
}
.container{
display: flex;
justify-content: center;
width: 1000px;
padding: 10px;
}
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="C:/Users/MSI/Documents/programacion/html_y_css/estilos_test.css">
<meta name="viewport" content="width=device-width, initial-scape=1.0">
</head>
<body>
<section class="hero">
<div class="container">
<article>
<h1> ¿quien soy?</h1>
<p> araragi koyomi: estudiante de bioingeniería . amante de la naturaleza; me gustan
las plantas y los animales en general, amo las matemáticas, me siento cómodo en lugares silenciosos y disfruto de ver anime,
salir con amigos, el queso, el vino y el chocolate, me encanta la programación y planeo enfocar mi carrera en programación
tanto como pueda.
</article>
<figure>
<img class="image-item" src="C:\Users\MSI\Documents\programacion\html_y_css\imagenes\viajes\yo_laguna.jpg" alt="no se encuentra una imagen" width="400px">
<small> Figura: viaje a la laguna del otún</small>
</figure>
</div>
</section>
</body>
</html>
I tried using max-width to fix it, but then even the body of the page got squished in. Does anyone know how I can solve this issue? Any help would be greatly appreciated. Stackoverflow won't let me upload images, unfortunately.