/* Variables */
:root{
    --PrimaryColor: rgb(223, 223, 236);
    --PrimarySize: clamp(14px, 3vw, 28px);
    --SecondaryColor: rgb(188, 188, 208);
    --SecondarySize: clamp(10px, 2vw, 20px);
    --LinkColor: rgb(101, 119, 255);
}
/* Body (general) */
html{
    scroll-behavior: smooth !important;
}
body{
    background-color: rgba(56, 56, 56, 0.95);
    
    margin: 0;

    font-family: "Arial", "Helvetica", sans-serif;
    font-size: var(--SecondarySize);
}
h1{
    margin: 0;
}
h2{
    color: var(--PrimaryColor);
    margin: 10px 0px;
    font-size: var(--PrimarySize);
}
p{
    margin: 0;

    font-size: var(--SecondarySize);
}
div.NextButton{

    width: 64px;
    height: 64px;
    margin: 20px 33% 0px 33%;
}
/* Navigation bar */
nav{
    background-color: rgba(0, 0, 0, 0.9);
    color: white;

    width: 100vw;
    padding: 10px;
    position: fixed;
    top: 0;

    font-size: larger;
}
nav .NavigationButtons{
    padding: 20px 0px 0px 10px;
    
}
nav a{
    text-decoration: none;
    color: var(--LinkColor);
    margin-left: 20px;

    font-size: medium;
}
/* About me (Header) */
.TextOverlay{
    background-color: rgba(56, 56, 56, 0.95);
    
    padding: 40px 33% 40px 20px;
    width: 100vw;
}
#Introduction h1{
    color: rgb(244, 244, 255);
}
#Introduction div div{
    color: var(--SecondaryColor);

    font-size: var(--SecondarySize);
}
/* Sections (Main Content */
section{

    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
}
.Section{
    background-color: rgba(56, 56, 56, 0.95);
    width:  100%;

    display: grid;
    grid-auto-flow: column;
}
.SectionContent{
    color: var(--SecondaryColor);

    padding: 20px 20px 20px 20px;
}
.SectionInfo{
    color: var(--SecondaryColor);

    padding: 42px 33vw 20px 20px;
}
#Pizzapocalypse .SectionInfo{
    color: var(--SecondaryColor);

    padding: 42px 23vw 20px 20px;
}
.SectionInfo li{
    padding: 10px;
}
.Link{
    padding: 10px 0 0 0;
    text-decoration: none;

    color: var(--LinkColor);
    font-size: var(--SecondarySize);
}
.Link a{
    text-decoration: none;
    color: var(--LinkColor);
}
/* Images for backgrounds */
#Introduction{
    background-image: url("Images/Background\ portofolio.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#Pizzapocalypse2{
    background-image: url("Images/Pizzapocalypse2/Pizza2MainImage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
#Pizzapocalypse{
    background-image: url("Images/Pizzapocalypse/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#Madhouse{
    background-image: url("Images/Madhouse/A14.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#MOTH{
    background-image: url("Images/MOTH/CodeNameMothBackground.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#MenuProject{
    background-image: url("Images/Background\ portofolio.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#Projects2{
    background-image: url("Images/SeperateGamesBackground.png");
    background-repeat: no-repeat;
    background-size: cover;
}
/* Tools */
#Tools{
    display: grid;
    grid-template-rows: auto 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: left;
    color: var(--SecondaryColor);
    
    padding: 100px 0 0 20px;
    width: auto;
    height: auto;
}
.GridTop{
    grid-row: 1;
    grid-column: span 2;
}
.GridItem{
    display: flex;
    flex-direction: row;
    padding: 20px;
}
.GridItem p{
    padding: 40px;
}
#abc{
    padding-right: 70px;
}
/* Footer (Contact page) */
.Footer{
    background-color: rgb(28, 28, 28);
    height: auto;
    display: block;
}
.Footer h2{
    padding: 100px 0 0 20px;
    margin: 0;
}
.Footer p{
    color: var(--SecondaryColor);
    padding: 0 0 40px 20px;
}