
#header {
  max-width: 1000px;
  background-color: #271033;
  height: 150px;
  background-image:url(/img/web/crows.png);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  margin-bottom: 4px;
  cursor:url('/img/web/pointer.png'), auto;
}

body {
  background-color: #271033; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom, #271033, black);
  background-attachment: fixed;
  background-size: cover;
  color: #f378ee;
  font-family: Rubik;
  font-size: 16px;
  text-align: center;
  cursor:url('/img/web/pointer.png'), auto;
}

h1 {
  text-align: center
}

h2 {
  text-align: center;
}

b {
  color: #ffb937;
}

i {
  color: #ffb937;
}

a {
 color: #ffa5fb;
}

a:hover {
 color: #ffb937;
 cursor:url('/img/web/pointer.png');
}

::-moz-selection {
  color: #271033;
  background: #c565c1;
}

::selection {
  color: #271033;
  background: #c565c1;
}

/* Navigation section */
#navbar {
 height: 40px;
 background-color: #281333;
 font-size: 20px;
 max-width: 1000px;
 border: 2px solid #582e66;
 border-radius: 2px;
cursor:url('/img/web/pointer.png');
}

#navbar ul {
 display: flex;
 padding: 0;
 margin: 0;
 list-style-type: none;
 justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
  text-align: center;
}

/* Navigation links*/
#navbar li a {
  color: #ED64F5;
  font-weight: 800;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

#navbar li a:hover {
 color: #ffb937;
 cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

#container {
  max-width: 1000px;
  margin: 0 auto;

}

#container a {
  font-weight: bold;
  text-decoration:none;
}

#flex {
 display: flex;
 margin-bottom: 4px;
}


main {
  background-color: #281333;
  width: 1000px;
  padding: 40px;
  margin-top: 3px;
  border: 2px solid #582e66;
  border-radius: 2px;
  text-align: left;
}

.homeimg
{
  max-width: 800px;
  border-radius: 5px;
  width: 100%;
}

.tab {
  overflow: hidden;
  text-align: center;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 800;
  color: #c565c1;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
  
}

.tab button:hover {
color: #ffb937;
cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

.tab button.active {
color: #ffb937;
}

.tabcontent {
  display: none;
  border-top: none;
}

footer {
  background-color: rgb(40, 19, 51, 0.6);
  padding: 10px;
  width: 400px;
  border-radius: 2px;
  display: inline-block;
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 30px;
}

.row {
  margin: 5px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 3px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  padding: 3px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #e26fdd;
  color: #271033;
  text-align-last: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

.btn:hover {
  background-color: #ffabfb;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

.btn.active {
  background-color: #1b0623;
  color: #ffb937;
  outline: solid 1px #c565c1;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

#myImg {
  border-radius: 5px;
  height: 180px;
  width: 230px;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 55px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffd27e;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

.close:hover,
.close:focus {
  color: #fc0e0e;
  text-decoration: none;
  cursor: url('https://file.garden/ZezvcgZmvAenbmCc/portfolio/clicker.cur'), auto;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}