html {
    background-color: rgb(48, 48, 48);
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: white;
}

.header {
    background-color: rgb(94, 94, 94);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.icon {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    object-position: 50% 60%;
}

.About-button {
    position: absolute;
    top: 20%;
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background-color: rgb(131, 131, 131);
    color: black;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    transition: background-color 0.15s;
}

.About-button:hover {
    background-color: rgb(92, 91, 91);
    cursor: pointer;
}

.content {
    max-width: 800px;
    margin: 100px auto 0;
    padding: 20px;
    background-color: rgb(72, 72, 72);
    border-radius: 10px;
    text-align: center;
}

.menu {
    background-color: rgb(72, 72, 72);
    border-radius: 5px;
    padding: 20px 8px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mabtmb {
    color: white;
    background-color: rgb(90, 90, 90);
    border: none;
    border-radius: 5px;
    padding: 10px 5px;
    transition: opacity 0.15s;
    display: block;
    margin: 10px auto;
}

.mabtmb:hover {
    opacity: 0.7;
}

.blog-posts {
    background-color: rgb(72, 72, 72);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap-reverse; 
}

a.blogBox-link:nth-child(2) > div:nth-child(1) {
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 32px;  
}

.socials {
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.discordd, .yootoob, .twooter {
    transition: box-shadow 0.15s;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
}

.discordd:hover, .yootoob:hover, .twooter:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

.blogBox {
    background-color: rgb(53, 53, 53);
    max-width: 400px;
    max-height: 400px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.15s;
    flex: 1; /* Allow the boxes to grow and shrink */
}

.blogBox-link {
    text-decoration: none; 
    color: inherit; 
}

.blogBox:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

.blogpic {
    width: 90%; 
    height: auto; 
    max-width: 395px; 
    max-height: 250px; 
    border-radius: 30px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .blogBox {
        max-width: 100%; 
        padding: 10px; 
    }

    .blogpic {
        max-width: 100%; 
        padding: 10px;
    }
}
