html {
    background-color: black;
}

marquee img {
    margin: 1% 0.15%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

	background-image: url("../images/background.gif");

	background:
		linear-gradient(to right, rgba(0, 0, 0, 0.6) 60px, transparent 150px) left,
		linear-gradient(to left, rgba(0, 0, 0, 0.6) 60px, transparent 150px) right,
		linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 60px, transparent 150px) top,
		linear-gradient(to top, rgba(0, 0, 0, 0.6) 60px, transparent 150px) bottom,
		url("../images/background.gif");
}

.main-region {
    display: grid;
    width: 50%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin: 0 auto;

    background-color: rgba(9, 0, 21, 0.75);
    color: rgb(255, 251, 246);

    border: 4px double rgba(77, 0, 179, 0.5);
    border-radius: 15px;
}

.main-region h2 {
    font-size: clamp(0.9rem, 1vw, 1.5rem);
}

.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;

    /*border: 1px solid rgba(128, 128, 128, 0.268);*/
}

#cell1 {
    align-items: baseline;
}

#cell2 {
    align-items: baseline;
}

#cell3 {
    align-items: baseline;
}

#cell4 {
    display: flex;
    flex-direction: column;

    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.1rem, 1vw, 2rem)
}

#cell4 button {
    background-color: rgba(124, 0, 212, 0.114);
    border: 3px double rgba(124, 0, 212, 0.5);
    border-radius: 5px;

    padding: 3%;

    font-size: 1.1vw;
    color: #6F94C8;
    font-family: 'Courier New', Courier, monospace;
}

#cell4 button:hover {
    color: antiquewhite;
    font-size: 1.15vw;
    border-color: rgba(200, 122, 255, 0.5)
}

#cell5 {
    display: block;
    text-align: center;
}

#cell5 p {
    margin: 0.5em 0 0 0;
    font-size: clamp(0.5rem, 1.25vw, 2rem);
    font-family: Arial, Helvetica, sans-serif;
	color: rgb(255, 251, 246)
}

#cell6 {
    text-align: center;
}

#cell6 p {
    font-size: clamp(0.1rem, 1vw, 2.5rem);
}

#cell7 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

#cell7 #thing{
    width: 100%;
}

#cell8 {
    text-align: center;
    font-size: clamp(0.1rem, 1vw, 1.3rem);
}

#cell9 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
}

#cell9 a {
    display: inline;
    line-height: 0;
    width: fit-content;
    margin: 0 3%;
}

#cell9 img {
    width: 1.8vw;
    display: block;
}

#cell9 a #twitch {
    width: 1.5vw;
}

#cell9 a #steam {
    width: 1.25vw;
}

.topButton {
    border: 2px solid rgba(124, 0, 212, 0.5);
    border-radius: 3px;
    border-style: inset;
    border-top: none;

    background-image: linear-gradient(rgba(7, 0, 17, 0.65), rgba(96, 0, 163, 0.1));

    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.5rem, 1.1vw, 2rem);
    text-decoration: none;
    color: #6F94C8;

    width: 75%;
    padding: 5% 10%;
}

.topButton:hover {
    color: antiquewhite;
    font-size: clamp(0.5rem, 1.15vw, 2rem);
    border-color: rgba(200, 122, 255, 0.5);
}

.topButton p {
    margin: 0 0 0 0;
}

.pfp {
    border: 3px dotted rgba(110, 0, 255, 0.5);
    border-radius: 20%;
    width: 40%;
}
