/* CLEAN EVERYTHING UP */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* NOW WE GET INTO THE REAL DESIGN OF THE WEBPAGE */
@font-face {
	font-family: 'typetwo';
	src: url('../fonts/TypeTwo.woff');
}



body {
    background: black;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.navbar {
    height: 75px;
    width: auto;
    box-sizing: border-box;
    padding-top: 0.35rem;

}

nav {
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #907fad;
}


nav a {
    text-decoration: None;
    color: white;
    font-family: 'typetwo';
    font-size: 1.5rem;
    margin: 2rem;
}

nav a:hover {
    color: #909fad;
}

h1 {
    font-family: 'typetwo';
    color: #907fad;
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
}

h2 {
    font-family: 'typetwo';
    color: white;
    font-size: 1.5rem;
    text-align: center;
}  

h3 {
	font-family: 'typetwo';
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

h4 {
    font-family: 'typetwo';
    color: white;
    font-size: 1rem;
    text-align: center;
}

p {
	font-family: 'typetwo';
	color: #909fad;
	font-size: 1rem;
	margin-top: 0.8rem;
}
.spacer {
	height: 3rem;
	width: 100%;
}

.rowContainer {
    justify-content: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.4rem;
}


.logo {
	height: 400px;
	width: 400px;
}

.logoContainer {
	margin-left: 1.2rem;
    margin-right: 1.2rem;
    margin-top: 2.2rem;
	text-align: center;
}

.logoH2 {
    margin-bottom: 3rem;
}


/* FOOTER */
footer {
    background-color: black;
    padding: 3rem 0;
    font-family: 'typetwo';
    width: auto;
    margin-top: auto;
    bottom: 0;

    /* set the height of the footer as per your requirement */
    color: #fff;
    text-align: center;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_left,
.footer_center,
.footer_right {
    flex: 1;
    text-align: center;
}

.footer_center h3,
.footer_right h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
}

.footer_left h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer_left p,
.footer_right p {
    margin-bottom: 1rem;
    color: #907fad;
}

.footer_center {
    text-align: center;
    margin-left: 2rem;
}

.footer_center p {
    color: white;
    font-size: 1rem;
}

.the_bugs {
    height: 150px;
    width: 150px;
}

.footer_right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_right a {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    color: #907fad;
}

.footer_left a {
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    color: #907fad;
}

.footer_right a:hover {
    color: #909fad;
}

.footer_left a:hover {
    color: #909fad;
}

*, *::before, *::after {
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {

    .navbar {
        width: 100%;
        height: auto; /* Fix overflow */
        background: #907fad !important;
        padding: 0.5rem 0;
    }

    nav {
        display: flex;
        flex-wrap: wrap; /* Allows wrapping on small screens */
        align-items: center;
        justify-content: center;
        background: #907fad;
        padding: 0.5rem;
        text-align: center;
    }

    nav a {
        text-decoration: none;
        color: white;
        font-family: 'typetwo';
        margin: 0.4rem 0.8rem;
        font-size: 1rem;
    }

    nav a:hover {
        color: #909fad;
    }

    .logo {
        height: 250px; /* Mobile-friendly size */
        width: 250px;
    }

    footer {
        width: 100%;
        margin: 1rem 0;
        margin-top: auto;
    }

    .footer_container {
        max-width: 100%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .footer_container h3 {
        font-size: 1.3rem;
    }

    .footer_container p {
        font-size: 1rem;
    }

    .footer_center {
        margin: 0;
    }

    .the_bugs {
        height: 100px;
        width: 100px;
    }
}
