body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
}
@keyframes rotater{
    0% {transform: rotate(0deg)};
    75% {transform: rotate(270deg);} 
    100% {transform: rotate(360deg);}
}
@keyframes rotater1{
    0% {transform: rotate(180deg)};
    75% {transform: rotate(360deg);} 
    100% {transform: rotate(540deg);}
}

#navbar {
  background-color: #292f36;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-height: 60px;
  height: 80px;
  transition: all 1s ease;
  top: 0;
  z-index: 99999;
}
#navbar .heading {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
}
#navbar .heading h2 {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  color: #4ecdc4;
  color: whitesmoke;
}
#navbar .links {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
#navbar div a {
  margin: 0 0.8rem;
  font-size: 1.6rem;
  text-decoration: none;
  color: #4ecdc4;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.7rem;
}
#navbar div a:hover {
  background-color: #4ecdc4;
  background-color: whitesmoke;
  color: #292f36;
}
#navbar span {
  position: absolute;
  display: flex;
  height: 80px;
  align-items: center;
  top: 0;
  right: 1rem;
  visibility: hidden;
}
#navbar span i{
    font-size: 1.4rem;
    color: #4ecdc4;
}
#navbar span i:hover{
  animation: rotater 1s infinite;
}

.collapse{
    height: 200px !important;
}
@media (max-width: 590px) {
  #navbar {
    display: unset;
    height: 80px;
    overflow: hidden;
  }
  
  #navbar .heading {
    margin: 0;
    display: flex;
    width: 100%;
    height: 80px;
    justify-content: flex-start;
    margin-left: 1rem;
  }
  #navbar .links {
    flex-direction: column;
    margin-left: 1rem;
    align-items: flex-start;
    height: fit-content;
    margin-top: 0rem;
  }
  #navbar .links a {
    margin: 0.3rem;
    width: fit-content;
  }
  #navbar span {
    visibility: visible;
    cursor: pointer;
  }
}
@media (min-width: 591px){
    #navbar{
        height: 80px !important;
    }
}
#welcome-section{
  background: url(./pexels1.jpg);
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  overflow: auto;
}
#welcome-section h1{
  text-align: center;
  color: black;
  font-size: 3rem;
  font-weight: bolder;
  font-family: 'Raleway', sans-serif;
}
#welcome-section h1 span{
  white-space: nowrap;
  color: coral;
}
@media (max-width:830px){
  #welcome-section h1{
    font-size: 2rem;
  }
}
@media (max-width:566px){
  #welcome-section h1{
    font-size: 1rem;
  }
}
#projects{
  height: 100%;
  background-color: orange;
  background-image: url(./pexels2.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
  min-height: 100vh;
  overflow: auto;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
#inner-pro{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.project-head{
  text-align: center;
  margin: 0;
  padding: 2rem;
  font-size: 2rem;
  transition: all ease;
  animation: colourize 3s infinite;
}
.project-tile h2{
  display: inline;
}
.projects-links{
  text-decoration: none;
  color: unset;
}
.projects-links img{
  width: 600px;
}
.project-tile{
  background-color: black;
  height: fit-content;
  display: block;
  width: 1000px;
  justify-self: center;
  border-radius: 0.5rem;
}
.project-tile div{
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
}
.project-tile div span{
  color: white;
}
.item-wraps{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width:1010px){
  .project-tile{
    width: 700px;
  }
}
@media (max-width:720px){
  .project-tile{
    width: 500px;
  }
}
@media (max-width:530px){
  .project-tile{
    width: 400px;
  }
}
@media (max-width:430px){
  .project-tile{
    width: 300px;
  }
}
@media (max-width:330px){
  .project-tile{
    width: 250px;
  }
}
@keyframes colourize{
  0% {color: black;}
  50% {color: gray;}
  100% {color: black;}
}
/* .spaner{
  color: white;
  text-align: center;
  visibility: hidden;
}*/
.spaner{
  transition: all 1s ease;
}
.project-tile:hover .spaner::before{
  content: '\2728';
} 
.project-tile:hover .spaner::after{
  content: '\2728';
} 
.owl-theme .owl-nav{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  align-self: center;
}
.owl-nav-prev,.owl-nav-next{
  background-color: black !important;
  color: white !important;
}

.owl-next,.owl-prev{
  background-color: unset !important;
  color: unset !important;
  outline: none !important;
}
@keyframes butoncolor{
  0% {
    color: white;
  }
  25% {color: greenyellow;
  }
  50% {color: orange;
  }
  75% {color: aqua;
  }
  100% {color: white;
  }
}
.owl-nav i{
  animation: butoncolor 4s ease infinite;
  font-size: 1.5rem;
}
.owl-nav-prev:hover i{
  animation: unset;
  color: yellow;
}
.owl-nav-next:hover i{
  animation: unset;
  color: yellow;
}
footer{
  background-color: #000000;
}
footer div:nth-child(1){
  font-size:2rem;
  text-align: center;
  color: white;
  padding: 1rem;
}
footer div:nth-child(2){
  font-size:1rem;
  text-align: center;
  color: white;
  padding: 0.5rem;
  padding-bottom: 2rem;
}
footer a{
  text-decoration: none;
  color: white;
}