<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mudança de Vida</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header">
<h1>Mônica</h1>
<p>Eu também tô perdida!</p>
</div>
</header>
<main class="container">
<div>
<div class="manchete">
<h1>Tá cansado do seu trabalho?<br> <strong>Então bora mudar isso!</strong></h1>
<div class="texto">
<p>Eu sou veterinária, mas não sou feliz na profissão. Eu amo viajar e trabalho pra poder fazer isso
o
máximo de vezes que eu puder. Daí pensei: e seu eu pudesse trabalhar de qualquer lugar do mundo?
Conheci uma pessoa muito massa e ela me mostrou o mundo da TI. Estou estudando front end e
também
penso na parte de UX. Será que eu vou conseguir? Vocês podem acompanhar essa saga me seguindo
nas
minhas redes sociais.</p>
</div>
</div>
<div class="links">
<a href="https://instagram.com/mschroff">Instagram</a>
<a href="https://github.com/monicaschroff">Github</a>
</div>
</div>
<div class="foto">
<img src="IMG_5499.jpg" alt="Foto da Mônica sendo feliz no Japão">
</div>
</main>
<footer>
<p>Autora desse blog: Mônica Schroff</p><br>
<p><a href="mailto:mschroff@gmail.com">mschroff@gmail.com</a></p>
</footer>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #ff9b54;
font-family: "Libre Franklin", sans-serif;
color: #4f000b;
font-weight: 500;
}
header {
background-color: #ce4257;
padding: 2rem;
text-align: center;
}
header h1 {
text-shadow: 2px 2px 5px #ff9b54;
padding: 1rem;
font-size: 40px;
}
header p {
background-color: #ff9b54;
padding: 0.5rem 60px;
display: inline;
}
main {
padding: 1rem;
}
.container {
display: flex;
flex-direction: row;
width: 55%;
margin: 0 auto;
column-gap: 30px;
}
.manchete {
order: 0;
background-color: #ff7f51;
border: dotted;
flex-grow: 1;
align-self: flex-start;
}
.texto {
order: 0;
padding: 1rem;
flex-grow: 0;
flex-basis: 330px;
align-self: center;
}
.links {
margin: 35px 0px;
text-align: center;
}
main h1 {
text-align: center;
padding: 1rem;
}
img {
border-radius: 20px;
width: 200px;
}
a {
background-color: #ce4257;
padding: 0.2rem;
border: solid;
border-radius: 10px;
border-color: #720026;
text-decoration: none;
color: #ff9b54;
}
footer {
background-color: #720026;
color: #ff9b54;
padding: 1rem;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
}
.email {
border-color: #ff9b54;
}