/* * is a special css element that effects everything */

* {
    font-family: "Lucida Grande", "Helvetica", "Arial", sans-serif; /* This sets the font family. Since it is inside a *, it does it for every element */
}

/* things without . do not affect classes, they affect html tags such as <html>, <body> */

html, body {
    margin: 0px; /* Margin is the area outside of the box that is padded */
}

body {
    background-color: rgb(247 166 166);  /* Background-Color sets the background color of an element */
     /* Linear Gradient */
     background: linear-gradient(to right, #ff4e4e, #feb47b);
     height: 100vh;
}

/* things with . affect classes. they affect html tags that have class="" inside of them, like this: <body class="namehere"> */

.content {
    margin: 8px; /* Margin is the area outside of the box that is padded */
    margin-top: 50px;
}

.contentAboutme {
    margin: 8px; /* Margin is the area outside of the box that is padded */
    margin-top: 50px;
    color: rgb(0 0 0); /* Color is text color */
    text-align: center;
}

.YTVideo {
    width: 420px; /* Width of the element */
     /* Padding but on the right of the element */
    height: 345px;
    border: black;
    border-style: solid;
    margin-top: 10px;
    margin-left: 10px;
    border-width: 3px;
    border-radius: 3px;
    padding: 5px;
    background: rgb(156 156 156 / 49%);
}


.modslist {
    display: flex; /* flex stuff, confusing */
    flex-direction: row; 
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    padding: 8px; 
}

.mod {
    width: 200px; /* Width of the element */
     /* Padding but on the right of the element */
    height: 295px;
    border: black;
    border-style: solid;
    margin-top: 10px;
    margin-left: 10px;
    border-width: 3px;
    border-radius: 3px;
    padding: 5px;
    background: rgb(156 156 156 / 49%);
}

.navbar {
  position: fixed; /* position: fixed makes this always on screen */
  height: 30px; /* height sets the height */
  top: 0; /* top sets the top position */
  width: 100%; /* width: 100% makes this fill the screen */
  background-color: rgb(137, 3, 3);  /* Background-Color sets the background color of an element */
  background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
  padding: 0px; /* Padding is the area inside of the box that is padded */
  box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
  text-align: center;
  display: table-cell;
}

.navbar a {
  padding-top: 5.1px;
  padding-bottom: 5.1px;
  display: inline-table;
  padding: 8.20px;
  color: rgb(255, 255, 255); /* Color is text color */
  text-decoration: none; /* Text decoration is underlines, etc */
}

.mod img {
    width: 180px; /* Width of the element */
    margin-left: 0px; /* Margin Left, is the margin for the left side of the content */
    height: 180px;
    border: black;
    border-style: solid;
}

.mod p {
    height: 45px;
    width: 190px;
    text-align: center;
    text-overflow: ellipsis;
    margin: 0px;
}
/* a:hover only is used when well, hovering */

.navbar a:hover {
    color: rgba(255, 255, 255, 0.747); /* Color is text color */
    text-decoration: underline; /* Text decoration is underlines, etc */
}

a {
    color: rgb(19, 83, 157);
    text-decoration: none;
}

a:hover {
    color: rgb(47, 105, 172);
    text-decoration: underline;
}

<style>
* {
  box-sizing: border-box;
}


/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.column {   
  text-align: center;
}
/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: #ff9999;
   padding: 20px;
   margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  text-align: center;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}