html {
    font-family: "Josefin Sans", sans-serif;
    color: #d4cfdd;
    line-height: 1.8em;
    text-align: center;
    background: linear-gradient(0deg, rgba(153,67,88,1) 0%, rgba(21,6,19,1) 100%);
    min-height: 100vh;
}

body {
    margin: 0;
    margin-top: 100px;
}

#intro {
    line-height: 2em;
    font-size: 1.6em;
}

h2 {
    margin-top: 2em;
}
h4 {
    font-size: 1.3em;
    margin-top: 1em;
    text-shadow: 1px 1px 0px rgb(250, 43, 95);
}
.flex {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.hidden {
    display: none;
}

#members > div {
    width: 200px;
}

#members img {
    border-radius: 100px;
}

#members .socials {
    margin-top: 20px;
    font-size: 1.5em;
}

#social {
    margin-top: 20px;
}

#projects-menu {
    text-align: center;
    column-gap: 10px;
    margin-top: 50px;
}

#projects-menu .button,
#projects-menu button {
    display: inline-block;
    text-decoration: none;
    padding: 0.5em 3em;
    margin-bottom: 2em;
    border-radius: 10px;
    font-family: 'MotleyForcesRegular', sans-serif;
    font-size: 1.5em;
    background-color: rgb(250, 43, 95);
    color: #ccc;
    border: 3px solid #ccc;
    box-sizing: border-box; 
    text-decoration: none;
    width: 300px;
    text-transform: uppercase;
}

#projects-menu .button > div {
    height: 100%;
    align-items: center;
}

#projects-menu button:hover, #projects-menu .button:hover {
    color: #1e1e1e;
    background-color: #ccc;
    cursor: pointer;
}

.projects {
    column-gap: 25px;
}

.projects > div {
    width: 400px;
}

.projects h3 {
    font-size: 1.5em;
    margin-bottom: .5em;
}

.projects .description {
    height: 150px;
    text-align: justify;
}

.projects .img-container {
    height: 300px;
    margin-bottom: 1em;
    border-radius: 3em;
    display: inline-block;
}

.projects img {
    height: 300px;
    max-width: 400px;
    object-fit: cover;
    border-radius: 3em;
    box-shadow: 3px 3px 0px rgb(255, 128, 159);
}

.projects .proj-members {
    font-size: .8em;
    color: #ffcbdcae;
}

.projects .tags {
    margin-top: 10px;
    column-gap: 10px;
    height: 100px;
}

.projects .tags > div {
    font-family: 'MotleyForcesRegular', sans-serif;
    text-shadow: 
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    color: #ccc;
    border-radius: 10px;
    height: 25px;
    padding: 5px;
    margin-bottom: .5em;
}

.projects .content-warning {
    background-color: rgb(171, 0, 86);
}

.projects .main-genre {
    background-color: rgb(6, 152, 6);
}

.projects .main-type {
    background-color: rgb(35, 14, 109);
}

.projects a > i {
    font-size: 2em;
}

a, i {
    color: rgb(255, 143, 174);
}

a > i:hover {
    color: white;
}

.member-info i {
    margin: 0 5px;
}

.member-info h4 {
    height: 50px;
}

#logoTitle {
    font-family: 'MotleyForcesRegular', sans-serif;
    font-size: 5em;
    text-shadow: 4px 4px 0px rgb(250, 43, 95);
}

@media only screen and (max-width: 768px) {
    .projects .img-container {
        height: auto;
        max-width: 90%; 
    }
    .projects img{
        
        height: auto;
        max-width: 90%; 
        
    }
    #projects-menu button {
        width: 90%; /* Adjust width for mobile devices */
    }
    #projects-menu .button {
        width: 90%; /* Adjust width for mobile devices */
    }
}

.price {
    font-size: 13px;
    margin-left: 10px;
}

#footer {
    margin-top: 50px;
    width: 100%;
    height: 50px;
    background-color: black;
    align-items: center;
    column-gap: 20px;
}

#footer a {
    color: white;
    text-decoration: none;
}

#footer a:hover {
    color: rgb(255, 143, 174);
}