homepage/style.css
2025-06-20 13:16:01 -04:00

39 lines
661 B
CSS

body {
background-image: url("bg.jpg");
background-size: cover;
font-family: monospace, monospace;
font-size: 25px;
color: #e6e6fa;
}
table, th, td {
border: 1px solid black;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.link-container {
width: 300px;
background: rgba(255, 255, 255, 0.11);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.26);
padding: 20px;
}
.link {
color: #e6e6fa;
text-decoration: none;
}
.link:hover {
color: #FF3F33;
text-decoration: none;
}