* {
  margin: 0;
  box-sizing: border-box;
}

/* title section */
#navigation-bar {
  text-align: right;
  background-color: #000000;
  padding: 3% 6% 1%;
}

.logo {
  box-sizing: border-box;
  border-radius: 100%;
  width: 100%;
}

.logo:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;
  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

.iiser2_logo {
  width: 35%;
  display: block;
  margin: 20px auto;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.nav-item-style {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.parallax {
    /* the background image used */
    background-image: url("../rhetor5/image.png");
    /* Full height of page */
    max-width: 100%;
    /* creating parallax effect */
    background-attachment: fixed;
    background-size: cover;
}


:root {
  color: white;
  font-size: 13px;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.618;
  font-weight: 400;
}

body {
  background-color: #0000;
  color: #0000;
}

a {
  color: #1abc89;
}

a:hover {
  opacity: 0.8;
}

p {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.5);
}

.small {
  font-size: 1rem;
  margin-top: 1em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

header {
  text-align: center;
  padding-bottom: 3rem;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2em;
  padding-bottom: 1rem;
  font-weight: 600;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

circle {
  transform-origin: 50% 50%;
  transform: scale(0);
  transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

text {
  font-size: 1.1rem;
  text-transform: uppercase;
  text-anchor: middle;
  letter-spacing: 1px;
  font-weight: 600;
}

.svg-text {
  fill: white;
}

.svg-masked-text {
  fill: #000000;
}

image {
  transform: scale(1.5);
  transform-origin: 50% 50%;
  transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.items {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 200px;
  margin: 5px;
  cursor: pointer;
  background-color: #6d4580;
  border-radius: 2px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02), inset 0 0px 0px 1px rgba(0, 0, 0, 0.07);
  transform: translateZ(0);
}

.item:hover circle,
.item:hover image {
  transform: scale(1);
}

button {
  width: 12px;
  height: 12px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  border-radius: 1px;
}
button.dark {
  background-color: #2f3238;
}
button.light {
  background-color: #f9f9f9;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* News section */
#news {
  text-align: center;
  padding: 10% 8%;
}

#news .col-lg-12 {
  padding: 2%;
}

#news h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.6rem;
}

#news p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #000;
}

#news img {
  margin: 8% auto;
  width: 70%;
}

.archives:hover {
  box-sizing: border-box;
  opacity: 0.7;
  width: 80%;
}

/* footer section */
#footer {
  text-align: left;
  background-color: #6d4580;
  padding: 3% 8%;
}

.icon {
  margin: 20px 20px 0 0;
  color: #fff;
  font-size: 1.5rem;
}

.icon:hover {
  color: #81b214;
}

.footer-head {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 15px;
}

.terms {
  text-decoration: none;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.terms:hover {
  color: #81b214;
}

.iiser_logo {
  width: 40%;
  display: block;
  margin: 20px auto;
}


