body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #333;
}


/* Header*/
.header {
  padding: 30px;
  text-align: center;
  height: 300px;
  background-image: url(img/Tishey.JPG);
  background-size: cover;
  color: azure;
  transform: translate(0%, 5%);
  z-index: 0;
}
    
.header h1 {
  font-size: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  background-color: #772146;
  padding: 10px;
  text-align: center;
  transform: translate(0%, 10%);
}

nav a {
  color: white;
  padding: 10px;
  margin: 5px;
  display: inline-block;
}
/* Style for the normal link */
a {
  color: #772146; 
  text-decoration: none;
}

/* Style for the highlighted link */
a:hover {
  color: white; /* Change the color on hover */
  background-color: #333; /* Add a background color on hover */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.nav-bar{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  padding: 12px 20px;
  }

.menu-icon {
  display: none;
  cursor: pointer;
  color: #ffbdbd;
  font-size: 24px;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 25%;
  background: #161616;
  padding-left: 20px;
  z-index: 1;
} 
    
/* Add a card effect for articles */
.card {
  background-color: rgba(255, 255, 255, 0.247);
  padding: 40px;
  margin-top: 40px;
  z-index: 1;
}
  
.audition{
  margin-top: -13.2%;
  margin-left: 20%;
} 
  
.blender{
  margin-top: -13.2%;
  margin-left: 40%;
} 
  
.lightroom{
  margin-top: -13.2%;
  margin-left: 40%;
} 
  
.photoshop{
  margin-top: -13.2%;
  margin-left: 20%;
} 
.premierpro{
  margin-top: -13.2%;
  margin-left: 60%;
} 
  
.xd{
  margin-top: -27%;
  margin-left: 60%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
clear: both;
}

/*Styling image*/
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto;
}
.grid-item {
  text-align: center;
}

/* Social Media Start */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 60px;
}
  
.fa:hover {
  opacity: 0.7;
}
/* Social Media End */

/* Footer */
.footer {
  padding: 30px;
  text-align: center;
  background: #772146;
  color: azure;
  margin-top: 20px;
}

/*Navigation for Mobile Device*/
@media only screen and (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: absolute;
    background-color: #333;
    z-index: 1;
  }

  .nav-links a {
    display: block;
    padding: 15px;
  }

  .menu-icon {
    display: block;
  }
}