@import url('fonts/webfont.css');
@font-face {
    font-family: '8bitOperatorPlus-Regular.ttf';
    src: url('fonts/8bitOperatorPlus-Regular.ttf');
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    background-image: url('src/img/Background.png');
    background-size: cover; 
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    color: #fff;
}

header, main, footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header-container {
    display: flex;
    align-items: center;
    font-family: '8bitOperatorPlus-Regular.ttf';
}

.media {
    margin-left: 20px;
    font-size: 24px;
}

.media a {
    text-decoration: none;
    color: #ffffff;
}

.boxcolor {
    color: #FF0000;
}

.boxcolor::before {
	content: "";
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	background-color: currentColor;
	vertical-align: middle;
	margin-right: 0.25rem;
}


header h1 {
    font-size: 36px;
    margin: 0;
}

.content {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.text-container {
    width: 70%;
}

.meme-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.meme-container img {
    margin-bottom: 10px;
    max-width: 100%;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.media .nf-fa-github {
	color: #ffffff;
    
}

p {
    line-height: 1.5;
    margin-bottom: 10px;
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
    font-family: '8bitOperatorPlus-Regular.ttf';
}

@media screen and (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .text-container,
    .meme-container {
        width: 100%;
    }
}
