 @import url("https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk";
}

body {
	background-color: #FAF7F0;
  }
    
h1 {
	font-family: Courier New;
  font-size: 100px;
  padding-bottom: 50px;
  }
  
h4 {
  font-weight: bold;
  }
    
img {
	width: 200px;
  }

header {
	margin-top: 100px;
  }

section {
	margin-bottom: 100px;
  }

.capa {
  width: clamp(200px, 80vw, 500px);
  }
    
.intro {
  padding: 10px;
}
.intro span {
	font-size: 20px;
  color: black;
  }
 
.centro {
	text-align: center;
  padding-bottom: 50px;
  }
    
.texto {
	text-align: justify;
  font-family: Lucida Console;
	font-size: 22px;
  color: rgb(80,80,80);
	text-indent: 60px;
  }

.perfil {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding-top: 50px;
	  font-family: Lucida Console;
	  font-size: 15px;
	  text-align: center;
	  }
.perfil img {
	  width: 50px;
    border-radius: 100px;
    }
    
.blockquote {
  font-style: italic;
  font-weight: bold;
  padding: 50px;
  }
  
  
  
  
  
  
  
  
  
  
