body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 20s ease infinite;
	height: 100vh;
}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

html {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

p {
    line-height: 28px;
}

/* Navigation Bar */
.nav-container {
    display: flex;
    justify-content: space-between;
    margin: 25px 30px;
    font-weight: 00;
}

.nav-container a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.navbar ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0px 10px;
}

.navbar li a:hover {
    color: #b2b2b3;
    border-bottom: 4px solid #000;
}

.active{
    color: #b2b2b3;
    border-bottom: 4px solid #000;
}

/* PAGE HEADING STYLES */
main {
    margin: 50px 16vw;
}

main h1 {
    font-size: 3em;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.header {
    margin-bottom: 30px;
}

.subheader {
    font-size: 22px;
    margin-top: 50px;
}



/* PROJECTS */
.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px auto;
    max-width: 1500px;
}

.projects h2, p {
    margin: 3px;
    padding: 0px;
}
.projects h2 {
    margin-top: 5px;
}

.project {
    margin: 0 12px;
}

.project p {
    font-size: 14px;
    margin-bottom: 30px;
}

.project img {
    width: 420px;
    height: 350px;
    border: 1.5px solid #7c94ad;
    border-radius: 5px;
}

.project img:hover {
    box-shadow: 5px 5px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 0px 0px #12294C;

}

/* Project 1 */

.glitch-embed-wrap {
    padding-top: 10px;
}

.description {
    margin-top: 20px;
    font-size: medium;
}

/* About me */
.bitmoji{
    position: absolute;
    width: 600px;
    height: 600px;
    margin: 0;
    padding: 0;
    left: 0;
}

.bio-container{
    position: relative;
    top: 200px;
    left: 150px;
    margin: 500px;
    font-size: 20px;
    line-height: 1.5;
    background-color: #fff;
    opacity: 0.85;
    border-radius: 10px;
    color: #000;
    padding: 30px;
    margin: auto;
}

#text {
    font-size: 25px;
    line-height: 4;
	display: inline-block;
    justify-content: center;
	vertical-align: middle;
	color: #000;
	letter-spacing: 2px;
}

#text p {
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
}

#cursor {
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 50px;
	background-color: orange;
	animation: blink .75s step-end infinite;
}

@keyframes blink {
	from, to { 
		background-color: transparent 
	}
	50% { 
		background-color: orange; 
	}
}

/* Contact me */
form {
    /* Center the form on the page */
    margin-top: 150px;
    width: 100%;
    /* Form outline */
    padding: 3em;
    border: 3px solid #ccc;
    border-radius: 1em;
    text-align: center;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  form li + li {
    margin-top: 1em;
  }
  
  label {
    /* Uniform size & alignment */
    display: inline-block;
    width: 90px;
    text-align: right;
    font-size: 18px;

  }
  
  input,
  textarea {
    font: 1em sans-serif;
  
    width: 60%;
    box-sizing: border-box;
  
    /* Match form field borders */
    border: 1px solid #999;
  }
  
  input:focus,
  textarea:focus {
    border-color: #000;
  }
  
  textarea {
    vertical-align: top;
  
    /* Provide space to type some text */
    height: 5em;
  }
  
button {
    padding-left: 90px; /* same size as the label elements */
    background-color: #fff; 
    border: none;
    color: black;
    border-radius: 10px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-left: 0.5em;
  }

button:hover {
        background-color: #000;
        color: #fff;
        border: 1px solid #000;
        cursor: pointer;    
    }

#comm1, #comm2{
    margin-bottom: 2px;

}

.check{
    width: 80px;
    display: flex;
}

.container{
    display: flex;
    justify-content: center;
}

.checkbox-container{
    margin-left: 70px;
}
  

/* Media query for responsiveness */
@media screen and (max-width: 700px) {
    nav {
     display: none;
    }
   }


