@import url("https://fonts.googleapis.com/css?family=Montserrat");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #000000;
  color: #eeeeee;

  background: url("");
  background-repeat: no-repeat;
  background-size: 120%;
}
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: top;
}
.container p {
  font-size: 3rem;
  padding: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
}

.image {
  position: relative;
  width: 21.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 39.5%;
  margin-top: -38%;
}
.image1 {
  position: relative;
  width: 21.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 39.5%;
  margin-top: -23%;
}
.image__img {
  display: block;
  width: 100%;
  border-radius: 50%;
  border: 10px solid #ffffff;
}
/*Border radius of 50 means img is circle*/
.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;

  border-radius: 50%;
}

.image__overlay--blur {
  backdrop-filter: blur(5px);
}

.image__overlay--primary {
  background: ##36454f;
}

.image__overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.image__overlay:hover {
  opacity: 1;
}

.image__overlay:hover > * {
  transform: translateY(0);
}

.image__title {
  font-size: 1.5em;
  font-weight: bold;
}

.image__description {
  font-size: 1.25em;
  margin-top: 0.25em;
}

/* Font Properties for the text - Animated Developer, Creator, Designer*/
.container p span.typed-text {
  font-weight: normal;
  color: #dd7732;
}

/* Existence of the Cursor and Blinking Properties*/
.container p span.cursor {
  display: inline-block;
  background-color: #cccccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.container p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0% {
    background-color: #cccccc;
  }
  49% {
    background-color: #cccccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #cccccc;
  }
}
/*Until here is all Cursor Blinking Properties*/

/* Background Image Properties and Scaleability*/
.masthead {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  -moz-background-size: cover;
}

.masthead h2 {
  position: absolute;
  bottom: 0 rem;
  max-width: 550px;
  padding-right: 1.5rem;
}

/* Image Properties and Scaleability*/

/*Noscript Color and Attributes*/
.nojs {
  color: #dd7732;
  font-weight: normal;
}

.nojsadam {
  color: #dd7732;
  font-weight: normal;
}
/*Noscript Color and Attributes Ends*/

/*Example of scaling text to window size - font-size: 1.5vw;*/
h1 {
  
  font-weight: normal;
}

h2 {

  font-weight: normal;
}

h3 {
  font-weight: normal;
}