2024-02-12 16:27:04 -08:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
2024-02-12 16:27:04 -08:00
|
|
|
body {
|
2024-03-06 13:10:19 -08:00
|
|
|
background-color: #303446;
|
2024-02-12 16:27:04 -08:00
|
|
|
color: #4c4f69;
|
2024-03-06 17:06:01 -05:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
color: #c6d0f5;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: #8caaee;
|
2024-03-06 13:33:08 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
a:hover {
|
|
|
|
color: #85c1dc;
|
|
|
|
}
|
|
|
|
a:visited {
|
|
|
|
color: #ca9ee6;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
2024-02-12 16:27:04 -08:00
|
|
|
h1 {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
margin-top: 2px;
|
2024-03-06 17:06:01 -05:00
|
|
|
font-size: 3em;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
2024-03-06 17:06:01 -05:00
|
|
|
font-size: 2em;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
h3 {
|
2024-03-06 13:21:37 -08:00
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
2024-03-06 17:06:01 -05:00
|
|
|
font-size: 1.5em;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #ef9f76;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
2024-03-06 13:46:02 -08:00
|
|
|
li {
|
2024-03-06 13:48:28 -08:00
|
|
|
font-size: 1.5em;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
list-style-type: none;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5;
|
2024-02-12 16:27:04 -08:00
|
|
|
margin-bottom: 1.5px;
|
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
|
|
|
footer {
|
|
|
|
margin: 0 auto;
|
|
|
|
color: #c6d0f5;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
gap: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.socials {
|
|
|
|
display: flex;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.socials a {
|
2024-03-06 13:37:17 -08:00
|
|
|
padding: 0.25rem 0.5rem;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-decoration: none;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5;
|
|
|
|
background-color: #414559;
|
2024-02-12 16:27:04 -08:00
|
|
|
border-radius: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.25em;
|
|
|
|
margin: 5px;
|
2024-03-06 17:06:01 -05:00
|
|
|
line-height: 1.75em;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
.socials a:hover {
|
2024-03-04 15:55:59 -08:00
|
|
|
background-color: #ef9f76;
|
|
|
|
color: #292c3c;
|
|
|
|
border-color: #fab387;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 17:06:01 -05:00
|
|
|
|
|
|
|
hr {
|
2024-02-12 16:27:04 -08:00
|
|
|
height: 2px;
|
|
|
|
width: 80%;
|
2024-03-06 13:10:19 -08:00
|
|
|
background-color: #949cbb;
|
2024-03-06 17:06:01 -05:00
|
|
|
border: none;
|
|
|
|
margin: 1.5rem auto;
|
2024-03-06 13:14:27 -08:00
|
|
|
box-shadow: 0 0 5px 0px #949cbb;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|