/* Text Styling */
* {
    font-family:Arial, Helvetica, sans-serif;
    color: white;
}
/* Video Styling */
* video {
    width: 500px;
}
/* <p> Tag Styling */
* p {
    text-align: left;
    padding: 5px;
    text-shadow: 2px 2px 5px black;
}
/* Hobby List Left Styling */
.linktreelist {
    float: left;
    list-style:inside;
    padding: 0px;
    margin: 0px;
    text-align: left;
}
/* Hobby List Right Styling */
.floatright {
    float: right;
    list-style: inside;
    padding: 0px;
    margin: 0px;
    text-align: left;
}
/* Gradient Styling */ 
#grad {
     background-image: linear-gradient(to top right, rgb(255, 0, 144), rgb(0, 85, 255));
}
/* Header Styling */ 
.container {
    display: block;
    width: auto;
    height: auto;
    padding: 15px;
}
/* Profile Picture Styling */
.KeganImg {
    display:flex;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 100px; 
}
/* Secondary Header Styling */
.heading {
    padding: 5px;
    text-align: left;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}
/* Text Styling */
.text {
    padding: 5px;
    text-align: center;
    text-shadow: 2px 2px 5px black;
}
/* Grid Styling */
.grid {
    clear: right;
    margin: 10px;
    padding-top: 30px;
    display: grid;
    grid-gap: 10px;
    grid-template-areas:
    "group1 group1 group1" 
    "group2 group2 group2"
    "group3 group3 group3"
    "group4 group4 group4";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
}
/* Grid Styling */
.grid div {
    display: flex;
    color: black;
    font-size: x-large;
    text-align: center;
    justify-content: space-between;
}
/* Button Styling */
a:link, a:visited {
    border: solid;
    color: white;
    text-shadow: 2px 2px 2px black;
    padding: 14px 25px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
/* Button Styling */
a:hover, a:active {
  background-color: rgb(0, 166, 255);
}
/* Navbar Styling */
.navbar ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    background-color: #333333;
}
/* Navbar Styling */
.navbar ul li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}
/* Navbar Styling */
.navbar ul li a:hover:not(.active) {
    background-color: #111111;
}
/* Footer Styling */
.footer {
    background-color: rgb(40, 40, 40);
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    padding-left: 0px;
    padding-right: 0px;
}
/* Footer Styling */
.footer a {
   text-align: center;
}
/* Footer Styling */
.footer div:first-child {
    border-radius: 50px;
    background-color: rgb(36, 36, 114);

}
/* Footer Styling */
.footer div:nth-child(2) {
     border-radius: 50px;
    background-color: rgb(134, 18, 18);
}
/* Footer Styling */
.footer div:nth-of-type(3) {
     border-radius: 50px;
    background-color: rgb(117, 117, 6);
}
/* Footer Styling */
.footer div:last-child {
     border-radius: 50px;
    background-color: rgb(15, 92, 15);
}
/* Portfolio Header Styling */
.PortHeader {
    margin: 5px;
    padding: 10px;
}

/* Grid Styling */
.group1 {
    grid-area: group1;
}
/* Grid Styling */
.group2{
    grid-area: group2;
}
/* Grid Styling */
.group3{
    grid-area: group3;
}
/* Grid Styling */
.group4{
    grid-area: group4;
}
/* Grid Icon Styling */
.img1 {
    width: 40px;
    text-align: start;
}
/* Grid Icon Styling */
.img2 {
    width: 40px;
    text-align: start;
}
/* Grid Icon Styling */
.img3 {
    width: 40px;
    text-align: start;
}
/* Grid Icon Styling */
.img4 {
    width: 40px;
    text-align: start;
}