2024-02-12 16:27:04 -08:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
body {
|
2024-03-06 13:10:19 -08:00
|
|
|
background-color: #303446;
|
2024-02-12 16:27:04 -08:00
|
|
|
color: #4c4f69;
|
2024-03-04 15:55:59 -08:00
|
|
|
font-family: "Figtree", Arial, sans-serif;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
.container {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 75%;
|
|
|
|
grid-gap: 20px;
|
|
|
|
}
|
2024-03-06 13:33:08 -08:00
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2024-02-12 16:27:04 -08:00
|
|
|
.divs {
|
2024-03-04 15:55:59 -08:00
|
|
|
border: 2px solid #ef9f76;
|
2024-02-12 16:27:04 -08:00
|
|
|
border-radius: 10px;
|
2024-03-06 13:46:02 -08:00
|
|
|
padding: 0;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
margin-top: 2px;
|
2024-03-06 13:21:37 -08: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 13:46:02 -08:00
|
|
|
font-size: 2.5em;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
}
|
2024-03-06 13:21:37 -08:00
|
|
|
h4 {
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
2024-03-06 13:46:02 -08:00
|
|
|
font-size: 1.75em;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #ef9f76;
|
2024-02-12 16:27:04 -08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
border-top: 2px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 80%;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
p {
|
2024-03-06 13:46:02 -08:00
|
|
|
font-size: 1.25em;
|
2024-02-12 16:27:04 -08:00
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #c6d0f5
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 13:46:02 -08:00
|
|
|
li {
|
|
|
|
font-size: 1.25em;
|
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;
|
|
|
|
}
|
|
|
|
.button {
|
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;
|
|
|
|
line-height: 1.75em
|
|
|
|
}
|
|
|
|
.button: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
|
|
|
}
|
|
|
|
a {
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #8caaee
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
a:hover {
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #85c1dc
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-03-06 13:32:21 -08:00
|
|
|
a:not(.button):visited {
|
2024-03-04 15:55:59 -08:00
|
|
|
color: #ca9ee6
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
2024-01-27 20:43:36 -08:00
|
|
|
.batton {
|
2024-03-06 13:21:37 -08:00
|
|
|
display: flex;
|
2024-02-12 16:27:04 -08:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-03-06 13:21:37 -08:00
|
|
|
flex-wrap: wrap;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
.nya {
|
|
|
|
height: 2px;
|
|
|
|
width: 80%;
|
2024-03-06 13:10:19 -08:00
|
|
|
background-color: #949cbb;
|
2024-02-12 16:27:04 -08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
2024-03-06 13:14:27 -08:00
|
|
|
box-shadow: 0 0 5px 0px #949cbb;
|
2024-02-12 16:27:04 -08:00
|
|
|
}
|
|
|
|
@media screen and (max-width:750px) {
|
|
|
|
#e {
|
|
|
|
padding: 0px;
|
|
|
|
margin-left: 0px
|
|
|
|
}
|
2024-03-06 13:06:40 -08:00
|
|
|
}
|