67 lines
782 B
CSS
67 lines
782 B
CSS
|
body {
|
||
|
font-family: "Poppins", sans-serif;
|
||
|
font-weight: 400;
|
||
|
font-style: normal;
|
||
|
color: #b7b7b7;
|
||
|
background-color: #101519;
|
||
|
font-size: 120%;
|
||
|
margin: auto;
|
||
|
width: 70%;
|
||
|
min-width: 24em;
|
||
|
max-width: 48em;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: #00d1ff;
|
||
|
text-align: center;
|
||
|
font-size: 180%;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
margin: auto;
|
||
|
max-width: 10em;
|
||
|
min-width: 5em;
|
||
|
width: 50%;
|
||
|
display: block;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
color: #00d1ff;
|
||
|
font-size: 140%;
|
||
|
}
|
||
|
|
||
|
span.technology {
|
||
|
color: #427b3f;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #73509d;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: #73509d;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
a:active {
|
||
|
text-decoration: underline:
|
||
|
}
|
||
|
|
||
|
p.indent {
|
||
|
margin-left: 2em;
|
||
|
}
|
||
|
|
||
|
p.footer {
|
||
|
font-size: 80%;
|
||
|
margin-top: 4em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|