/* General styling for the body */
body {
  background-color: #2b2b33;
  font-size: 20px;
  word-spacing: 4px;
  color: #f3f2f9;
  font-family: sans-serif;
  margin-top: 0;
  margin-right: 250px;
  margin-left: 250px;
}

/* Styling for tables */
table {
  margin-left: auto;
  margin-right: auto;
}

/* Flex container styling */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for paragraphs */
p {
  font-size: 19px;
}

/* Styling for tables and paragraphs */
table,
p {
  width: 100%;
}

/* Styling for horizontal rules */
hr {
  width: 100%;
  border: 1px solid #ffffff;
  margin: 10px 0;
}

/* Flex container for horizontal rules */
.hrContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling for heading 1 */
h1 {
  color: white;
  font-size: 50px;
}

/* Styling for images */
.cocolyzeimg {
  width: 100%;
  height: auto;
  border-radius: 0 0 6% 6%;
  margin-top: 0;
}

/* Flex container for the front page */
.frontPage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Styling for a specific class */
.tr1 {
  color: #89dfd6;
}

/* Flex container for images */
.images {
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
}

/* Styling for image references */
.imagerefs {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

/* Styling for contact */
.contact {
  font-size: 60px;
  margin-top: 200px;
}

/* Styling for icons */
.icons img {
  width: 25px;
  height: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
  margin: 0 10px 0 0;
}

/* Styling for contact grouping */
.contactGrouping > * {
  display: inline-block;
  margin-top: 20px;
}

.contactGrouping > span {
  margin-left: 40px;
}

/* Styling for icons container */
.icons-container > div,
.icons-container > div.icons {
  display: inline-block;
  vertical-align: middle;
}

/* Styling for icons container links */
.icons-container a {
  display: inline-block;
}

/* Styling for icons container images */
.icons-container img {
  max-width: 30px;
  height: auto;
}

/* Styling for icons container */
.icons-container {
  margin-left: 200px;
}

/* Styling for icons */
.icons {
  margin-left: 40px;
}

/* Styling for Google links */
.gg a {
  color: white;
  text-decoration: none;
}

/* Styling for menu items navigation */
.menu-items nav ol {
  padding: 0;
}

.menu-items nav ol li {
  margin-bottom: 0px;
}

/* Styling for hover container */
.menu-items nav ol li .hover-container {
  padding: 3px;
  display: inline-block;
}

/* Styling for menu item links */
.menu-items nav ol li a {
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  padding: 0;
}

/* Styling for menu item links heading 4 */
.menu-items nav ol li a h4 {
  margin: 0;
  padding: 0;
}

/* Styling for menu items */
.menu-items {
  margin-top: 10px;
}

/* Styling for cat class */
.cat {
  position: absolute;
  top: 40%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 350px;
  height: auto;
}

/* Styling for boarder class */
.boarder {
  margin-right: 300px;
  margin-top: 100px;
}

/* Styling for resume links */
.resumeLink {
  text-decoration: none;
  color: white;
}

/* Styling for hover container */
.hover-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Styling for hover container before */
.hover-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: left 0.3s ease-in-out;
}

/* Styling for hover container on hover */
.hover-container:hover::before {
  left: 0;
}

/* Styling for home centering */
.homecentring {
  margin-top: 200px;
  font-family: Arial,
  sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling for home content */
.homecontent {
  text-align: center;
}

/* Styling for navigation link */
.navlink {
  width: 60px;
  height: auto;
  position: absolute;
  top: 15%;
  left: 90%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Styling for menu bar */
.menuBar {
  position: absolute;
  top: 5%;
  left: 95%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 350px;
  height: auto;
}

/* Cursor content styling */
.cursorBody {
  margin: 0;
  height: 100vh;
  cursor: none;
  background: rgb(27, 27, 27);
}

/* Cursor styling */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  animation: cursorAnim .5s infinite alternate;
  pointer-events: none;
}

/* Cursor after styling */
.cursor::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  border: 8px solid gray;
  border-radius: 50%;
  opacity: .5;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 .5s infinite alternate;
}

/* Keyframes for cursor animation */
@keyframes cursorAnim {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(.7);
  }
}

/* Keyframes for cursor after animation */
@keyframes cursorAnim2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(.4);
  }
}

/* Keyframes for cursor animation 3 */
@keyframes cursorAnim3 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(3);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Expand animation styling */
.expand {
  animation: cursorAnim3 .5s forwards;
  border: 1px solid red;
}