@import url('https://fonts.googleapis.com/css?family=Montserrat');
li {transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;}

:root{
    --background-color: black;
    --nav-color: white;
    --text-color: white;
    font-family: Garamond, serif;
}
*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    height: 100%;
    background-image: url("https://cdn.discordapp.com/attachments/787402434590277652/979344484330516550/Screenshot_2022-03-04_190630.png");
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
nav{
    display: flex;
    justify-content: center;
    border-top: 15px solid transparent;
    background-color: black;
}
nav ul{
    display: flex;
    background-color: transparent;
}
nav ul li{
    list-style: none;
}
nav ul li:hover{
    border-left: 2px solid #dd7732;
    border-right: 2px solid #dd7732;
    border-radius: 10px;
    padding-top: 5px;
}
nav ul li a{
    text-decoration: none;
    font-size: 21px;
    padding: 10px;
    color: white;
}
nav ul li a:hover{
    color: #dd7732;
}
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container p {
    font-size: 3rem;
    padding: 0.5rem;
    font-weight: 'Courier New', monospace;;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
    color: var(--text-color);
    background: rgba(0, 0, 0, .6);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .2);
    border: solid;
}
  .container p span.typed-text {
    font-weight: normal;
    color: #dd7732;
  }
  .container p span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
  }
  .container p span.cursor.typing {
    animation: none;
  }
  @keyframes blink {
    0%  { background-color: #ccc; }
    49% { background-color: #ccc; }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100%  { background-color: #ccc; }
  }
.social{
 display: flex;
 justify-content: center;
}
.social li{
    list-style: none;
}  
.footer {
	display: flex;
	justify-content: center;
	position: relative;
	top: 0px;
	color: white;
}