* {
    font-family:"Rubik", sans-serif;
}

body { 
  background-color: #000000;
}

h1,h2,h3,h4,h5,p {
  color:white;
}

#smaller-heading {
  color:white;
}

/* Row and column elements */

.col-span-3 {
	grid-column: span 3 / span 3;
}

.col-span-4 {
	grid-column: span 4 / span 4;
}

.col-span-5 {
	grid-column: span 5 / span 5;
}

.col-span-6 {
	grid-column: span 6 / span 6;
}

.col-span-7 {
	grid-column: span 7 / span 7;
}

.col-span-12 {
	grid-column: span 12 / span 12;
}

.list-inline-item:not(:last-child) {
  margin-right: 0rem;
}

#devicons i {
  line-height: inherit;
  font-size: 75px; 
  color: white; 
  margin: 15px;
}

#devicons p {
  line-height: inherit;
  color: white; 
  margin: 15px;
}

/* Nav elements */
  
#nav-container {
  text-align: center;
  background-color: #000000;
  background-repeat: repeat-x;
  background-position: top;
}

/* Profile picture circle element */

.profile-pic {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
}

.profile-wrapper {
  display: flex;
  justify-content: flex-end;   /* pushes image to right edge of column */
  align-items: center;
  padding-right: 60px;         /* soft spacing from edge */
}

/* Navigation (customisations to override Bootstrap) */
  
  .navbar .navbar-nav .nav-link {
      color: white;
  }

  .navbar .navbar-nav .nav-item {
      color: white;
      padding-left: 20px;
      padding-right: 20px;
  }
  
  .navbar-nav .nav-item .nav-link:focus {
  text-decoration: underline;
  }

  .navbar .navbar-brand {
      color: white;
      margin-left: 20px;
  }

  .navbar-toggler {
      color: white;
      margin-right: 20px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Footer (customisations to override Bootstrap) */

.footer {
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: #000000;
  text-align: center;
}

/* Media query styles for desktop devices */

  @media only screen and (min-width: 992px) {
    body {
      font-size: 16px;
      width: 100%;
      margin: auto;
    }

    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto;
      justify-content: flex-end;
      padding-right: 20px;
  }

  .navbar-toggler-icon {
    color: white !important;
  }
  }
  
/* Media query styles for tablet devices */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 8px;
    width: 100%;
    margin: auto;
  }
  p {
    font-size: 12px;
  }
  h3 {
    font-size: 16px;
  }
  h5
    {
      font-size: 12px;
    }
  #news {
    grid-template-columns: auto auto auto;
  }
  .navbar-toggler-icon {
    color: white !important;
  }
}

  /* Media query styles for mobile devices */

  @media only screen and (max-width: 767px) {
    body {
      font-size: 8px;
      width: 100%;
      margin: auto;
    }
    p {
      font-size: 12px;
    }
    h3 {
      font-size: 14px;
    }
    h5
    {
      font-size: 12px;
    }
    #news {
      grid-template-columns: auto auto;
    }
    .navbar-toggler-icon {
      color: white !important;
    }
    .profile-wrapper {
    justify-content: center;
    padding-right: 0;
    margin-top: 30px;
  }
  .profile-pic {
    width: 180px;
    height: 180px;
  }
  .col-span-6 {
    grid-column: span 12;
  }
}