/*Portion of dropMenu Code taken from from https://www.youtube.com/watch?v=zUeG6VgdKSc&ab_channel=InventionTricks*/

body{
	background-color: white;
  	padding-top: 140px;
  	display: flex;
  	justify-content: center;
  	
}

.dropdownMenu{
	align-items: center;
	max-width: 200px;
	margin: 120px auto;
	font-family: sans-serif;
	font-size: 20px;
	margin-left: 30%;
	min-height: 150px;
}

.dropdownMenu select{
	width: 200%;
}

h1 {
	text-align: center;
	margin-top: auto;
	font-size: 35px;
	font-family: serif;
}

/*typewriter effect from https://css-tricks.com/snippets/css/typewriter-effect/*/

/*h1 for the landing page*/
.typewriter h1{
	overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	letter-spacing: .10em; /* Adjust as needed */
	animation: 
	  typing 3.5s steps(40, end),
	  blink-caret .75s step-end infinite;
	}


/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

/*/*css for previous and next button from https://www.w3schools.com/howto/howto_css_next_prev.asp*/
/*a {
  text-decoration: none;
  display: inline-block;
  padding: 0;
}
a:hover {
  background-color: #ddd;
  color: black;
}
.previous {
  background-color: #f1f1f1;
  color: black;
}
.next {
  background-color: #05AA8D;
  color: black;
}
.round {
  border-radius: 50%;
}
*/

/*Text settings customized to be similar to Google search results!! VANESSA PART*/
.searchResults {
    position:relative;

  }
  #articleTitle {
    color: #190DAC;
    margin-left: 180px;
    margin-top: 20px;
    text-decoration: #190DAC;
    text-align: left;
    font-size: 25px;
    right: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200px;
   /* align-self: auto;
    /*float: left; */
  }
#normalText {
    color: rgb(61, 61, 61);
    margin-left: 180px;
    margin-top: 5px;
    margin-right: 500px;
    margin-bottom: 50px;
    text-decoration: #190DAC;
    text-align: left;
    font-size: 15px;
    right: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200px;
    align-self: auto;  
  
    /*float: left; */
}
#urlHandle {
    text-decoration: gray;
    margin-left: 180px;
    text-align: left;
    font-size: 10px;
    right: 50px;
    font-family: Arial, Helvetica, sans-serif;
    align-self: auto; 
   /* float: left; */
}



.maincontainer{
	margin:0;
  padding:0;
  display:flex;
  justify-content: center;
  width: auto;
  height:100vh;
}

/*.box1{
	position: absolute;
}*/

/*previous and next buttons bless this individual https://github.com/JoyZhu219/joy.github.io/blob/main/week006/Net.Art.css*/
.buttonInfo{
	width: 100vw;
	height: 5vh;
	z-index: 100;
}

/*helped with the fixed positioning https://www.w3schools.com/css/tryit.asp?filename=trycss_position_fixed*/
.buttonInfo {
	position: fixed;
	top: 5px;
	left: 5 px;
}

.buttonInfo .button{
  color: black;
  text-decoration: none;
  margin: 20px;
  padding: 15px;
  position: relative;
  bottom: 0;
  margin-top: 10px;
  margin-left: 10px;

}

/* GOOGLE IMAGE SLIDESHOW INSPIRED BY https://www.w3schools.com/howto/howto_js_lightbox.asp VANESSA PART*/
/* The grid: Four equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    /*padding: 10px;*/
  }
  
  /* Style the images inside the grid */
  .column img {
    opacity: 0.8; 
    cursor: pointer; 
    width: 70%;
  }
  
  .column img:hover {
    opacity: 1;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
  .container {
    position: relative;
    display: none;
  }
  
  /* Expanding image text */
  #imgtext {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: black;
    font-size: 20px;
    font-family: sans-serif;
  }
  
  /* Closable button inside the image */
  .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: black;
    font-size: 45px;
    cursor: pointer;
  }

/*got from awesome font website which I got from https://github.com/JoyZhu219/joy.github.io/blob/main/week006/Net.Art.css*/

i {
	color: black;
	font-size: 1.2rem;
}