Coloque suas
ideas em movimento
Olá, meu nome é Vinicius Rodrigues, atualmente sou front-end developer, crio alguns sites incriíveis para resolver problemas, ajudar pessoas e seus negócios.
//css
/* reset css
--------- */
body,
p,
h1,
ul,
li,
a {
padding: 0px;
margin: 0px;
list-style: none;
text-decoration: none;
font-family: "PT Sans", sans-serif;
color: #000000;
}
body {
width: 100%;
min-height: 100vh;
}
img {
display: block;
max-width: 100%;
}
* {
box-sizing: border-box;
}
/* Header
--------- */
.header {
padding: 60px 0;
display: flex;
justify-content: space-around;
text-transform: uppercase;
}
.logo {
background-color: red;
}
.menu-nav ul {
display: flex;
flex-wrap: wrap;
}
.menu-nav ul li {
display: block;
padding: 0 10px;
font-size: 1em;
font-weight: 700;
transition: color 200ms linear;
transition: transform 200ms linear;
}
.menu-nav ul li:hover {
color: var(--primary);
transform: scale(1.20)
}
.menu-nav a {
display: block;
padding: 10px;
font-size: 1.25em;
}
/* main */
.main {
display: flex;
justify-content: space-around;
}
.readme h1 {
font-size: 3em;
font-weight: bold;
line-height: 1.0em
}
.readme p {
width: 480px;
}
.readme span {
color: #6C63FF;
}
.readme img {
width: 200px;
margin-top: 3rem;
margin-bottom: 5rem;
}
.flat-img {
width: 330px;
}