body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(36, 38, 56);
    color: rgb(137, 173, 244);
}

header {
    background-color: rgb(36, 38, 56);
    color: rgb(137, 173, 244);
    padding: 2em;
    text-align: center;
    z-index: 1000;

}

header {
    position: relative;
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: auto;
    max-width: 15%;
}

h1 {
    margin: 0;
    padding-top: 20px;
}

p {
    margin: 0;
}


.container {
    max-width: 900px;
    margin: 2em auto;
    padding: 2em;
}

.project-card {
    background-color: #2c2f48;
    border: 1px solid #494d6e;
    border-radius: 10px;
    margin: 1em 0;
    padding: 1.5em;
    transition: transform 0.3s;
    color: rgb(137, 173, 244);
    text-align: center;
}

.project-card:hover {
    transform: scale(1.05);
    border-color: rgb(137, 173, 244);
}

.project-thumbnail {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: left;
    border-radius: 8px;
    display: block;
    margin: 0 auto 1em;
}

.project-link {
    color: #87CEEB;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #00BFFF;
    text-decoration: rgb(0, 225, 255) wavy underline;}



    @media (max-width: 600px) {
    .project-thumbnail {
        width: 100%;
        height: auto;
        max-width: none;
    }
}

.random-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(137, 173, 244);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2em;
    margin: 20px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.random-button:hover {
    background-color: #7e0000;
}

.footer {
    background-color: rgb(36, 38, 56);
    color: rgb(137, 173, 244);
    padding: 20px;
    text-align: center;
}

.footer-content h4 {
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
}

.footer-content a {
    color: #5fb7f7;
    text-decoration: green wavy underline;
}

.footer-content a:hover {
    background-color: #7e0000;
    text-decoration: green wavy underline;
}

.bbss-link {
    color: rgb(137, 173, 244);
    text-decoration: rgb(255, 0, 0) wavy underline;
}

.bbss-link:hover {
    color: rgb(148, 255, 216);
    text-decoration: wavy overline rgb(255, 0, 0);

}
