@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Share+Tech+Mono&display=swap");
/*!* Global styles *!*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html {
    font-family: "Share Tech Mono", monospace;
    font-size: 12px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: #e7e7e7;
    background: rgb(19, 19, 19);
}
a {
    text-decoration: none;
    color: #00d0ff;
}
a:hover {
    color: rgba(249, 105, 14, 1);
}
ul {
    list-style: none;
}
p {
    font-size: 1.4rem;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
/*!* header *!*/
header {
    width: 100%;
    height: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.container {
    width: 100%;
/*    max-width: 90rem;*/
    margin: 0 auto;
    padding: 0 1.5rem;
}
.nav-brand {
    width: 7rem;
}
nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.line1 {
    width: 15px;
    height: 3px;
    margin: 5px 0;
    background: linear-gradient(135deg, rgba(249, 105, 14, 1) 0%, rgb(255, 255, 255) 100%);
}
.line2 {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, rgba(249, 105, 14, 1) 0%, rgb(255, 255, 255) 100%);
}
.line3 {
    width: 15px;
    height: 3px;
    margin: 5px 0;
    margin-left: 15px;
    background: linear-gradient(135deg, rgba(249, 105, 14, 1) 0%, rgb(255, 255, 255) 100%);
}
.burger-menu-icon {
    cursor: pointer;
    z-index: 999;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(55, 55, 55, 0.5);
    padding: 1.2rem;
    border-radius: 0% 0% 0% 40%;
}
.profile-pic {
    height: 9rem;
    width: auto;
    border-radius: 50%;
    display: block;
    margin: 1.5rem 0;
}
.caption {
    display: block;
}
.nav-list {
    width: 24rem;
    height: 100vh;
    background-color: #222222;
    position: fixed;
    top: 0;
    right: -26rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: start;
    z-index: 998;
    transition: all 650ms ease-in-out;
}
.nav-list.active {
    right: 0;
}
.nav-item {
    margin: 1.2rem 0;
}
.nav-link {
    opacity: 0;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #cecece;
    letter-spacing: 1.5px;
}
.nav-link:hover {
    color: rgba(249, 105, 14, 1);
}
.toggle {
    background: none;
}
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px) scaleX(2);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px) scaleX(2);
    margin-left: 0px;
}
@keyframes navLinkAnimate {
    from {
        opacity: 0;
        transform: translate(50px);
    }
    to {
        opacity: 1;
        transform: translate(0px);
    }
}
/* Landing Page */
.landing-page {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 64, 77, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), url("../images/landing-page.jpg") center no-repeat;
    background-size: auto;
    position: relative;
}
.main-message {
    width: 100%;
/*    max-width: 55rem;*/
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.main-message h2 {
    letter-spacing: 1.2rem;
    font-size: 4rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
    width: 45rem;
    margin: auto;
    border-right: 4px solid rgba(255, 255, 255, 1);
}
@keyframes typing {
    75% {
        width: 0rem;
        color: rgba(0, 64, 77, 0.9);
    }
    100% {
        width: 45rem;
    }
}
@keyframes blink {
    0% {
        border-right: 4px solid rgba(255, 255, 255, 0);
    }
    100% {
        border-right: 4px solid rgb(194, 194, 194);
    }
}
.main-message h3 {
    font-size: 3rem;
    margin: 1rem 0;
    color: rgba(0, 64, 77, 1);
    background: linear-gradient(to right, rgba(18, 253, 0, 1.00) 0%, rgba(0, 241, 255, 1.00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-message p {
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 30px
}
.intro-btn {
    display: flex;
    justify-content: center;
	flex-flow: wrap;
}
.btn {
    margin: 0 9px;
    background: rgba(3, 155, 155);
    border-radius: 2rem;
    color: #fafafa;
    padding: 1rem 2.5rem;
    display: inline-block;
    margin-top: 2rem;
    transition: background-color 650ms;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
}
.btn:hover {
    color: #fafafa;
    background-color: rgba(189, 72, 0);
}
.scroll-down i {
    color: #fafafa;
    transition: color 650ms;
    margin-top: 2rem;
    font-size: 3.5rem;
}
.scroll-down i:hover {
    color: rgba(189, 72, 0);
}
.title-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.title-heading h2 {
    font-size: 5rem;
    margin: 0.5rem 0 1rem 0;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.title-heading p {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
/*    text-transform: uppercase;*/
}
/*!* About *!*/
.about {
    width: 100%;
    min-height: 75vh;
    max-width: 80%;
    margin: auto;
    padding: 2.5rem 0;
}
.about .container {
    display: flex;
    align-items: center;
    min-height: 80vh;
}
.about-img img {
    height: 12rem;
    width: auto;
    border-radius: 50%;
    margin: 2rem;
    box-shadow: 0 20px 30px 0 rgba(0, 255, 255, 0.15);
}
.about-text-box {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    margin: 5rem;
}
.about-text-box h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
	background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-text-box p {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    padding: 0;
    margin-bottom: 1.45rem;
}
hr {
    margin: 3rem 0 1.6rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    border: 0;
    height: 5px;
}
/*!* education *!*/
.education {
    width: 100%;
    min-height: 75vh;
    max-width: 80%;
    margin: auto;
    padding: 0;
}
.education .container {
    display: flex;
    align-items: flex-start;
    min-height: 80vh;
    padding-top: 2rem
}
/*
.education-img img {
    height: 12rem;
    width: auto;
    border-radius: 50%;
    margin: 2rem;
    box-shadow: 0 20px 30px 0 rgba(0, 255, 255, 0.15);
}
*/
.education-text-box {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
	text-align: center
}
.education-text-box h2 {
	font-size: 5rem;
    margin: 0.5rem 0 1rem 0;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
	/*
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
*/
}

.education-text-box h3{
	font-size: 2rem;
	text-transform: uppercase;
	margin: 0.5rem 0 1rem 0;
} 

.education-text-box p {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: none;
    margin-inline: 6rem;
}

/*Table*/
.table-wrapper{
	padding-bottom: 50px;
}
.table-wrapper p{
	font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.results_table {
    border-radius: 5px;
	font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: normal;
    border: 3px solid #c88618;
    border-collapse: collapse;
    width: 50%;
	margin: auto;
    white-space: nowrap;
    background-color: rgb(19, 19, 19);
}

.results_table td, .results_table th {
    text-align: center;
	border-left: 3px solid #c88618;
    border-right: 3px solid #c88618;
    padding: 3px;
}

.results_table th {
	border:  3px solid #c88618;
	font-weight: bold;
	padding: 10px;
}

.results_table td {
    font-size: 14px;	
}

/*
.results_table thead th {
    color: #ffffff;
    background: black;
}


.results_table thead th:nth-child(odd) {
    color: black;
    background: #ffffff;
}
*/

.results_table tr:nth-child(even) {
    background: #252525;
}

/*!* Games *!*/
.games {
    padding: 3rem 0;
    min-height: 100vh;
    max-width: 80%;
    margin: auto;
}
.games-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.game-item {
    justify-content: center;
    padding: 2Rem;
    background-color: #1b1b1b;
}
.game-img {
    max-width: 600px;
    align-self: center;
    padding: 20px;
    flex: 1;
}
.game-video {
    padding: 3rem 0;
    max-width: 100%;
    margin: 0px auto;
}
.game-video > div {
    position: relative;
    padding-bottom: 75%;
    height: 0px;
}
.game-video iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.game-description {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}
.game-description-h2div {
    min-height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.game-description h2 {
    font-size: 3rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.game-description p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
}
.gamepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.gamepage-main-message {
    display: flex;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
    justify-content: center;
    background-color: #42424280;
}
.gamepage-main-message h2 {
    letter-spacing: 1.2rem;
    font-size: 3rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
    width: 27ch;
    margin: 0 2rem;
    border-right: 4px solid rgba(255, 255, 255, 1);
}
.gamepage-main-message h3 {
    font-size: 3rem;
    margin: 1rem 0;
    color: rgba(0, 64, 77, 1);
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gamepage-main-message p {
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 30px
}
.gamepage-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    padding: 1.5rem;
}
.gamepage-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gamepage-description h2 {
    text-align: center;
    font-size: 3.5rem;
    margin: 1rem 0 1rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.gamepage-description p {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    width: 85%;
    padding: 0 25rem;
}
.gamepage-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    background-color: #42424280;
}
.gamepage-footer div {
    font-size: 2rem;
    padding: 0 20px;
}
/*!* Projects *!*/
.projects {
    padding: 3rem 0;
    min-height: 100vh;
    max-width: 80%;
    margin: auto;
}
.projects-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.education-item {
    justify-content: center;
    padding: 2Rem;
    background-color: #1b1b1b;
}
.education-img {
    max-width: 600px;
    align-self: center;
    padding: 20px;
    flex: 1;
}
.project-video {
    padding: 3rem 0;
    max-width: 100%;
    margin: 0px auto;
}
.project-video > div {
    position: relative;
    padding-bottom: 75%;
    height: 0px;
}
.project-video iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.project-description {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}
.project-description-h2div {
    min-height: 19rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-description h2 {
    font-size: 3rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.project-description p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
}
.educationpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.educationpage-main-message {
    display: flex;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
    justify-content: center;
    background-color: #42424280;
}
.educationpage-main-message h2 {
    letter-spacing: 1.2rem;
    font-size: 3rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
    width: 27ch;
    margin: 0 2rem;
    border-right: 4px solid rgba(255, 255, 255, 1);
}
.educationpage-main-message h3 {
    font-size: 3rem;
    margin: 1rem 0;
    color: rgba(0, 64, 77, 1);
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.educationpage-main-message p {
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 30px
}
.educationpage-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    padding: 1.5rem;
}
.educationpage-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.educationpage-description h2 {
    text-align: center;
    font-size: 3.5rem;
    margin: 1rem 0 1rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.educationpage-description p {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    width: 85%;
    padding: 3rem 25rem;
}
.educationpage-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    background-color: #42424280;
}
.educationpage-footer div {
    font-size: 2rem;
    padding: 0 20px;
}
/*!* 3D modelling *!*/
.modelling {
    padding: 3rem 0;
    min-height: 100vh;
    max-width: 80%;
    margin: auto;
}
.models-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.modelling-item {
    justify-content: center;
    padding: 2Rem;
    background-color: #1b1b1b;
}
.modelling-img {
    max-width: 600px;
    align-self: center;
    padding: 20px;
    flex: 1;
}
.modelling-video {
    padding: 3rem 0;
    max-width: 100%;
    margin: 0px auto;
}
.modelling-description {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}
.modelling-description-h2div {
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modelling-description h2 {
    alignment: center;
    font-size: 3rem;
    padding: 1rem 0 2rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.modelling-description p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
}
.project-link {
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
.models-linklist {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.models-linklist li {
    margin: 0px 20px;
}
.modelpreview-main-message {
    display: flex;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
    justify-content: center;
    background-color: #42424280;
}
.modelpreview-main-message h2 {
    letter-spacing: 1.2rem;
    font-size: 3rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
    width: 27ch;
    margin: 0 2rem;
    border-right: 4px solid rgba(255, 255, 255, 1);
}
.modelpreview-main-message h3 {
    font-size: 3rem;
    margin: 1rem 0;
    color: rgba(0, 64, 77, 1);
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.modelpreview-main-message p {
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 30px
}
.modelpreview {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.modelpreview-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    padding: 1.5rem 0;
}
/*
.modelpreview-description {
    flex: 1;
}
*/
.modelpreview-description h2 {
    text-align: center;
    font-size: 3.5rem;
    margin: 1rem 0 1rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-transform: uppercase;
}
.modelpreview-description p {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    width: 100%;
/*    padding: 0 25rem;*/
}
.modelpreviewdisplay {
    margin: auto;
    padding: 2rem;
}
.vergeframe {
    width: 75rem;
    height: 50rem;
    border: black;
}
.modelpreview-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    background-color: #42424280;
}
.modelpreview-footer div {
    font-size: 2rem;
    padding: 0 20px;
}


/*Achievements*/
.achievements {
    padding: 3rem 0;
    min-height: 100vh;
    max-width: 80%;
    margin: auto;
}
.achievements-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.achievements-item {
    justify-content: center;
    padding: 2Rem;
    background-color: #1b1b1b;
}
.achievements-img {
    max-width: 600px;
    align-self: center;
    padding: 20px;
    flex: 1;
}
.achievements-video {
    padding: 3rem 0;
    max-width: 100%;
    margin: 0px auto;
}

.achievements-text{
	min-height: 32rem;
}
.achievements-description {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}
.achievements-description-h2div {
    min-height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievements-description-pdiv {
    min-height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.achievements-description h2 {
    alignment: center;
    font-size: 3rem;
    background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.achievements-description p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
	padding: 1rem;
/*    min-height: 14rem;*/
}

/*!* Contact *!*/
.contact {
    text-align: center;
    width: 100%;
    max-width: 80%;
    margin: auto;
}
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
	background: linear-gradient(to right, rgba(249, 105, 14, 1) 0%, rgba(0, 255, 68, 1.00) 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.contact p {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.contact a {
    margin-bottom: 1rem;
}
.contact .container {
    text-align: center;
    min-height: 10vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
/*!* Footer *!*/
footer {
    width: 100%;
    margin: auto;
    color: #8a8a8a;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
	margin-bottom: 2.5rem;
}
footer a {
    margin: 0 0.35rem;
}

.footer-nav {
	flex: auto;
	flex-wrap: wrap;
}

.footer-coded-by {
    margin: 2rem 0;
}
.footer-social a {
    margin: 0 0.5rem;
    font-size: 2rem;
    padding-bottom: 3rem;
}
.linklist li {
    margin: 0px 20px;
    font-size: 1rem;
}
.gamepage-linklist {
    margin: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.gamepage-linklist li {
    margin: 0px 20px;
}
.modelpreview-linklist {
    margin: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.modelpreview-linklist li {
    margin: 0px 20px;
}
.image_slider {
    display: flex;
    justify-content: center;
	padding: 5rem;
}
.slider {
    justify-items: center;
    margin: 0px 0 0px !important;
    width: 40%;
}
.back_button {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
}
/*!* Responsive Design *!*/
@media (max-width : 900px) {

    .intro-btn {
        flex-flow: wrap;
    }

    .main-message h3 {
        font-size: 1.6rem;
    }

    .about .container {
        flex-direction: column;
    }

    p {
        font-size: 1.3rem;
    }

    p {
        font-size: 1.3rem;
    }

    .education h3 {
        font-size: 2rem;
    }

    .education p {
        font-size: 1rem;
    }

    .results_table {
        border: 1px solid #c88618;
    }

    .results_table th {
        font-size: 0.7rem;
        padding: 3px;
        border: 1px solid #c88618;
    }

    .results_table td {
        padding: 1.5px;
        font-size: 0.7rem;
        border-left: 1px solid #c88618;
        border-right: 1px solid #c88618;
    }

    .title-heading {
        margin: 0;
    }

    .title-heading h2 {
        font-size: 4rem;
    }

    .title-heading p {
        padding: 1rem;
    }

    .main-message p {
        font-size: 1rem;
    }

    .btn {
        font-size: 1rem;
    }

    .services-tiers {
        gap: 0;
    }

    .project-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 20px 30px 0 rgba(212, 255, 255, 0.15);
    }

    .project-img {
        width: 20rem;
    }

    .image_slider {
        padding: 0;
    }

    .slider {
        justify-items: center;
        margin: 0px 0 0px !important;
        width: 100%;
    }

    .footer-social a {
        margin: 0 0.1rem;
        font-size: 1.2rem;
        padding-bottom: 0;
    }

    .modelpreview-outer {
        width: auto;
    }

    .modelpreview-main-message {
        flex-direction: column;
    }

    .modelpreview-main-message h2 {
        letter-spacing: 1rem;
        font-size: 2rem;
        font-weight: 600;
        overflow: hidden;
        white-space: nowrap;
        animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
        width: 27ch;
        margin: 0 2rem;
        border-right: 4px solid rgba(255, 255, 255, 1);
    }

    .modelpreview-main-message h3 {
        font-size: 1.5rem;
        margin: 1rem 0;
        color: rgba(0, 64, 77, 1);
        background: linear-gradient(to right, rgba(18, 253, 0, 1.00) 0%, rgba(0, 241, 255, 1.00) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .modelpreview-description {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        min-height: 23rem;
    }

    /*
        .modelpreview-description p {
            padding: 1rem;
        }
    */
    .modelpreviewdisplay {
        margin: 0;
        padding: 1rem;
    }

    .vergeframe {
        width: 100%;
        height: 25rem
    }

    .gamepage-main-message {
        flex-direction: column;
    }

    .gamepage-main-message h2 {
        letter-spacing: 1rem;
        font-size: 2rem;
        font-weight: 600;
        overflow: hidden;
        white-space: nowrap;
        animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
        width: 27ch;
        margin: 0 2rem;
        border-right: 4px solid rgba(255, 255, 255, 1);
    }

    .gamepage-main-message h3 {
        font-size: 1.5rem;
        margin: 1rem 0;
        color: rgba(0, 64, 77, 1);
        background: linear-gradient(to right, rgba(18, 253, 0, 1.00) 0%, rgba(0, 241, 255, 1.00) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .gamepage-description {
        min-height: 0;
    }

    .gamepage-description p {
        padding: 1rem;
        width: auto;
    }

    .gamepage-linklist {
        margin: 20px 0;
    }

    .gamepage-linklist li {
        margin: 0px 10px;
    }

    .gamepage-footer div {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .educationpage-main-message {
        flex-direction: column;
    }

    .educationpage-main-message h2 {
        letter-spacing: 1rem;
        font-size: 2rem;
        font-weight: 600;
        overflow: hidden;
        white-space: nowrap;
        animation: typing 5s steps(27), blink 1s ease-in-out 7s infinite;
        width: 27ch;
        margin: 0 2rem;
        border-right: 4px solid rgba(255, 255, 255, 1);
    }

    .educationpage-main-message h3 {
        font-size: 1.5rem;
        margin: 1rem 0;
        color: rgba(0, 64, 77, 1);
        background: linear-gradient(to right, rgba(18, 253, 0, 1.00) 0%, rgba(0, 241, 255, 1.00) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .educationpage-description {
        min-height: 0;
    }

    .educationpage-description p {
        padding: 1rem;
        width: auto;
        font-size: 1.5rem;
        padding-bottom: 3rem;
    }

    .educationpage-linklist {
        margin: 20px 0;
    }

    .educationpage-linklist li {
        margin: 0px 10px;
    }

    .educationpage-footer div {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .back_button {
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .back_button {
        font-size: 1rem;
    }

    .landing-page {
        background-size: auto;
    }

    .contact p {
        padding: 1rem;
    }

    .about-text-box {
        padding: 1rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about {
        max-width: 95%;
    }

    .education {
        max-width: 95%;
    }

    .games {
        max-width: 95%;
    }

    .modelling {
        max-width: 95%;
    }

    .achievements {
        max-width: 95%;
    }

    .contact {
        max-width: 95%;
    }

    .achievements-text {
        min-height: auto;
    }

    .achievements-description-h2div {
        min-height: auto;
    }

    .achievements-description h2 {
        font-size: 2rem;
    }

    .achievements-description-pdiv {
        min-height: auto;
    }

    .achievements-description p {
        font-size: 1.25rem;
    }
}
@media (max-width: 665px) {
    .main-message {
        top: 55%;
    }
	
	@keyframes typing {
    75% {
        width: 0rem;
        color: rgba(0, 64, 77, 0.9);
    }
    100% {
        width: 30rem;
    }
}
	
    .main-message h2 {
        letter-spacing: 0.75rem;
        font-size: 2.65rem;
        width: 30rem;
    }
    .main-message h3 {
        font-size: 1.2rem;
    }
    .main-message p {
        font-size: 1.2rem;
    }
    .btn {
        border-radius: 0.9rem;
        padding: 0.9rem 0.9rem;
        font-size: 0.9rem;
    }
    .about-text-box h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .about-text-box p {
        margin: 0 0 2.45rem;
    }
    .title-heading h2 {
        margin-bottom: 2rem;
    }
    .title-heading p {
        font-size: 1.3rem;
    }
    .contact .container {
        flex-direction: column;
    }
    footer, footer p {
        font-size: 1rem;
	}
}