html,body{height: 100%;}


/* for desktops */
@media (max-width: 1200px) {
    html {
        zoom: 230%;
	}
} 


/* for laptops */
@media (max-width: 991px) {
    html {
        zoom: 200%;
	}
} 

/* for large tablets */
@media (min-width: 768px) and (max-width: 990px) {
	html {
        zoom: 180%;
	}
} 

/* for smaller tablets */
@media (max-width: 768px) {
	html {
        zoom: 150%;
	}
} 

/* for cellphones */
@media (max-width: 500px) {
	html {
        zoom: 100%;
	}
} 


body{
    background: #000000;
    font-family: 'Inter', sans-serif;
  }

.title_case{
    display: table;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.title_case_copy{
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;

}

h1{
    font-weight: 200;
    color: #ffff;
    display:inline-block;
    overflow:hidden;
    white-space:nowrap;
    width: 14ch;
    animation: typing 1.5s steps(24), blink .3s step-end infinite alternate;
    border-right: 3px solid;
    font-size: 2em;
    margin-bottom: 0%;
}

h2{
  color: grey;
  font-family: "Chivo", monospace;
  font-size: medium;
}


.cd_button{
    width: 300px;
    height: 60px;
    background-color: #000000; 
    border: 1px solid springgreen;
    color: springgreen;
    padding: 10px 20px;
    margin: 9px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 7px grey;
    transition-duration: 0.4s;
    text-align: left;
}

.cd_button:hover {
    background-color: springgreen;
    color: black;
}


i{
    margin-left: 20px;
    margin-right: 20px;
}

/*- - - - Typing animation - - - -*/

@keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }

/*- - - - - - - - - - - - - - - - -*/
