

/* Navigation styles */

* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
    background-image: url(images/background\ Large.png);
}

img {
  display: block;
  max-width: 100%;
}

#logo img {
  margin-left: 10px;
  padding-top: 33px;
}

header {
  background-color: #fff;
  height: 130px;
  border-radius: 0px 0px 40px 40px;
}

.mobile {
  display: block;
}

.tablet-desktop, #menu-links {
  display: none;
}

nav {
   font-size: 30px;
   background-color: white;
   border-radius: 0px 0px 30px 30px;
   font-family: Ayuthaya;
}

nav ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

nav li {
   text-align: center;
}

nav a {
   display: block;
   padding: 0.5em;
   color: #000;
   text-decoration: none;
}


/* Style rules for hamburger menu */
.mobile-nav a {
   text-align: center; 
   font-size: 1.5em;
   display: block;
}

.mobile-nav a.menu-icon {
   display: block;
   position: absolute;
   right: 0;
   top: 0;
}

header img {
  margin: 0 auto;
}

.hamburgericon {
  padding: 1px;
  font-size: 60px;
}

main {
  background-color: white;
  opacity: .80;
  border-radius: 30px;
  padding: 20px;
  margin: 20px;
  text-align: center;
}

main p {
  font-family: Avenir;
}

main p a {
  color: #7d5fa7;
}

main p a:hover {
  text-decoration: none;
  color: #5591a9;
  background-color: #0c3853;
}

.me {
  width: 500px;
}
/*
.carousel {
  position: relative;
  height: 600px;
  width: 80%;
  margin: 0 auto;
}

.carousel_image {
  width: 100%;
  height: 100%;
}

.carousel_track-container {
  height: 100%;
  position: relative;
}

.carousel_track {
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel_slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.carousel_button {
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.carousel_button--left {
  left: -40px;
}

.carousel_button--right {
  left: -40px;
}

.carousel_button-- img {
  width: 12px;
}*/

.skills {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
}

.programs {
  margin: 0 auto;
  width: 300px;
  display: grid;
  grid-template-columns: auto;
  grid-gap: 30px;
}

.mobile-program {
  padding: 10px;
}


h3 {
  font-size: 40px;
  font-family: Ayuthaya;
}

.experience {
  font-size: 25px;
}

footer {
  background-color: #fff;
  border-radius: 20px 20px 0px 0px;
}

.certificates {
  margin: 0 auto;
}

/*.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  color: black;
  text-align: center;
}*/


.footer-text {
  padding: 12px;
  text-align: center;
  font-family: Krungthep;
  text-decoration: bold;
}

.footer-text a {
  text-decoration: none;
  color: #000;
}

.footer-text a:hover {
  text-decoration: none;
  color: #5591a9;
}

label {
  font-family: Ayuthaya;
  color: white;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  font-family: Avenir;
  border: 1px solid #ccc; /* Gray border */
  border-radius: 10px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #7d5fa7;
  color: black;
  font-family: Krungthep;
  padding: 12px 50px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #5b4493;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-image: url(images/pexels-felix-mittermeier-956999.png);
  padding: 20px;
}

.photo {
  margin: 0 auto;
  width: 400px;
}

@media screen and (min-width: 600px) {

  .mobile, .mobile-nav, .mobile-program {
    display: none;
  }

  .tablet-desktop {
    display: block;
  }

  header {
    border-radius: 0;
  }

  img {
    width: 500px;
  }

  /* Navigation styles for tablet/desktop - make the number of autos match the number of nav items */
   nav ul {
       display: grid;
       grid-template-columns: auto auto auto auto;
   }
  
   nav a:hover {
   background-color: #fff;
   border-radius: 0px 0px 40px 40px;
   }
  
   nav ul li:hover > ul {
       display: block;
       width: inherit;
   }
  
   nav ul ul {
       display: none;
       position: absolute;
   }
  
   nav ul ul li {
       width: auto;
   }

   a:hover {
       color: #5591a9;
       background-color: #fff;
   }

   .me {
    margin: 0 auto;
    width: 300px;
   }

   main .tablet-desktop {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 200px;
   }

  .skills img {
    margin: 0 auto;
    width: 200px;
  }

  .programs {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 40px;
    width: 1000px;
  }

  .photo {
  margin: 0 auto;
  width: 500px;
}

  label {
  font-family: Ayuthaya;
  color: white;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  font-family: Avenir;
  border: 1px solid #ccc; /* Gray border */
  border-radius: 10px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #7d5fa7;
  color: black;
  font-family: Krungthep;
  padding: 12px 50px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #5b4493;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-image: url(images/pexels-felix-mittermeier-956999.png);
  padding: 20px;
  margin-left: 90px;
  margin-right: 90px;
}

.photoshopwork {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

.photoshopwork img {
  margin: 0 auto;
}

.illustratorwork {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 20px;
}

.videos video {
  margin: 0 auto;
}

.videos {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
}

.gifs {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
}

.tlou {
  margin: 0 auto;
}

.websites {
  display: grid;
  grid-template-columns: auto auto auto;
}

}


/*
@media (max-width: 768px) {
  .nav-links {
    display: none; 
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; 
    left: 0;
    background-color: #fff;
  }
  .nav-links.active {
    display: flex; 
  }
  .hamburger {
    display: block; 
    float: right;
    width: 30px;
    height: 30px;
    }
} */
