website/style.css
Gen ddc95fdacb
increase blur
hopefully makes readability better
2024-03-06 13:06:40 -08:00

191 lines
3.1 KiB
CSS

* {
box-sizing: border-box;
}
body {
background-image: url("assets/DSCF8482.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-color: #111111;
color: #4c4f69;
font-family: "Figtree", Arial, sans-serif;
}
.container {
display: block;
margin-left: auto;
margin-right: auto;
width: 75%;
grid-gap: 20px;
backdrop-filter: blur(30px);
background-color: rgba(35, 38, 52, 0.35);
}
.divs {
border: 2px solid #ef9f76;
border-radius: 10px;
padding: 10px;
box-shadow: 0 0 10px 0px #ef9f76;
}
h1 {
margin-bottom: 2px;
margin-top: 2px;
font-size: 4em;
color: #c6d0f5;
text-align: center;
}
h2 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 3em;
color: #c6d0f5;
text-align: center;
}
h3 {
margin-bottom: 10px;
margin-top: 3px;
font-size: 1.75em;
color: #ef9f76;
text-align: center;
}
footer {
text-align: center;
border-top: 2px;
padding-top: 5px;
padding-bottom: 0px;
margin-left: auto;
margin-right: auto;
width: 80%;
color: #c6d0f5
}
h4 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 2.5em;
color: #ef9f76;
text-align: center;
}
p {
font-size: 2em;
margin: 10px;
text-align: center;
color: #c6d0f5
}
#h {
font-size: 2.5em;
text-align: center;
list-style-type: none;
color: #c6d0f5;
font-weight: bold;
}
#e {
font-size: 2em;
text-align: center;
list-style-type: none;
color: #c6d0f5;
margin-bottom: 1.5px;
}
.shit {
display: inline-block;
padding: 5px;
border: 1px solid #ef9f76;
padding-right: 5px;
text-decoration: none;
color: #c6d0f5;
border-radius: 5px;
font-weight: bold;
text-align: center;
font-size: 1.25em;
}
.button {
padding: 5px;
border: 1px solid #ef9f76;
text-decoration: none;
color: #c6d0f5;
background-color: #414559;
border-radius: 5px;
font-weight: bold;
text-align: center;
font-size: 1.25em;
margin: 5px;
line-height: 1.75em
}
.button:hover {
background-color: #ef9f76;
color: #292c3c;
border-color: #fab387;
}
a {
color: #8caaee
}
a:hover {
color: #85c1dc
}
a:visited {
color: #ca9ee6
}
.batton {
display: grid;
width: 25%;
margin-right: auto;
margin-left: auto;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
justify-content: center;
align-items: center;
padding-bottom: 1px;
}
.meow {
height: 2px;
width: 80%;
background-color: #ef9f76;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
margin-top: 10px;
}
.nya {
height: 2px;
width: 80%;
background-color: #292c3c;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
margin-top: 10px;
}
@media screen and (max-width:750px) {
#h {
padding: 0px;
margin-left: 0px
}
#e {
padding: 0px;
margin-left: 0px
}
.button-container {
display: flex;
}
}