@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Silkscreen:wght@400;700&display=swap');
.press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}
.silkscreen-regular {
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.silkscreen-bold {
    font-family: "Silkscreen", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.logo {
    aspect-ratio: 95 / 36;
    width: 35%;
    image-rendering: pixelated;
}

p,h1,h2,h3,h5 footer{
    color:chartreuse;
    font-family: "Silkscreen", serif;
    display: flex;
    justify-content: center;
    text-shadow: 1px 1px 2px #000;
}
a {
    color: #00ceff;
    font-family: "Silkscreen", serif;
    text-align: center;
}

body {
    background-color: #000;
    font-family: monospace;
    margin: 0;
    padding: 0;
    color: chartreuse;
    background-image: url('https://github.com/illavex/GoopMedia/blob/main/web-goop.png?raw=true');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: pixelated;
}

#container {
    /* width: 50%; */
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid chartreuse;
    padding: 20px;
}

#header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
    border-bottom: 2px dotted chartreuse;
}

#profile {
    display: flex;
    margin-top: 20px;
    border-bottom: 2px dotted chartreuse;
    padding-bottom: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border: 2px solid chartreuse;
    margin-right: 20px;
}

.profile-info {
    flex-grow: 1;
    justify-items: center;
}

#friends {
    margin-top: 20px;
    border-bottom: 2px dotted chartreuse;
    padding-bottom: 20px;
}

#friends h2 {
    text-align: center;
}

#friends > div {
    display: flex; /* Flex container */
    flex-direction: row; /* Ensure items are in a row */
    flex-wrap: wrap; /* Allow wrapping if too many friends */
    justify-content: center; /* Center friends horizontally */
    align-items: center; /* Vertically center friends */
    gap: 10px; /* Add some space between friends */
}

.friend {
    display: flex; /* Make each friend a flex container */
    flex-direction: column; /* Stack picture and name vertically */
    align-items: center; /* Center content horizontally */
    margin: 10px; /* Add margin around each friend box */
    text-align: center; /* Center text */
}

.friend-pic {
    width: 100px;
    height: 100px;
    border: 2px solid chartreuse;
    display: block;
    margin-bottom: 5px;
}

#links {
    margin-top: 20px;
    border-bottom: 2px dotted chartreuse;
    padding-bottom: 20px;
    text-align: center;
}

.link {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px;
    margin: 5px 0;
    border: 1px solid chartreuse;
    text-align: center;
}

.gif-container {
    width: 100%;
    max-width: 600px; /* Adjust this to your preferred maximum width */
    margin: 0 auto; /* Centers the container */
}

.gif {
    width: 100%;
    height: auto;
    display: block;
}

#videos {
    border-bottom: 2px chartreuse solid;
    padding-top: 20px;
    padding-bottom: 20px;
}

.videos {
    display: flex;
    border: 1px solid chartreuse;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
}
#footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.player {
    aspect-ratio: 16 / 9;
    width: 100%;
}
.face {
    aspect-ratio: 1 / 1;
    width: 20px;
}

@media (max-width: 200px) {

    .wrapper-main {
        width: 100%
    }



}
@media (min-width: 601px) {

    .wrapper-main {
        width: 50%
    }

}