body {
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    background-image: url('images/stars_bg.jpg');
    background-attachment: fixed;
}

button {
    border-color: white;
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    border-style: ridge;
    border-width: 1px;
    font-size: x-large;
}

button:hover {
    background-color: #424242;
}

.title {
    margin-top: 50px;
}

.main {
    border: 1px;
    border-color: white;
    border-style: ridge;
    padding: 2px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
    width: 75%;
    background-color: black;
}

.nav {
    border: 1px;
    border-color: white;
    border-style: ridge;
    padding: 5px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 10px;
}

.phorim-dialog {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 15%;
}

.bubble {
    position: relative;
    background: #000000;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    width: 260px;
    height: 120px;
    border-radius: 5px;
    padding: 0px;
    border: 1px ridge white;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: transparent white;
    border-width: 20px 0 20px 20px;
    top: 50%;
    right: -20px;
    margin-top: -20px;
}

audio {
    width: 120px;
    height: 30px;
}

a:link, a:visited, a:active {
    color: white;
    background-color: transparent;
    text-decoration: underline;
}

a:hover {
    color: #424242;
    background-color: transparent;
    text-decoration: underline;
}

.left-right-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.updates, .posts {
    border: 1px;
    border-color: white;
    border-style: ridge;
    float: left;
    width: 50%;
    height: 190px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    word-wrap: break-word;
    margin-left: 5px;
    margin-right: 5px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-ads-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 180px;
}

.music {
    border: 1px;
    border-color: white;
    border-style: ridge;
    float: left;
    width: 50%;
    height: 230px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    word-wrap: break-word;
    margin-left: 5px;
    margin-right: 5px;
}

ul {
    display: inline-block;
    text-align: left;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.image-wrapper img {
    display: block;
    max-width: 400px;
    transition: filter 0.3s ease;
    filter: blur(15px);
}

.image-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: sans-serif;
    text-align: center;
}

.image-wrapper input {
    display: none;
}

.image-wrapper input:checked ~ img {
    filter: blur(0);
}

.image-wrapper input:checked ~ .overlay {
    display: none;
}

.top-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    float: right;
}