
/* Importing Google font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

#contact{
	position:absolute;
	background-color:#BD53ED;
	left:0px;
	top: 20px;
    padding: 11px;
    height: 45px;
    width: 45px;
}

body {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #1D1E23;
    color:#ffffff;
    font-size:12px;
}
a{
    font-weight:500;
    color:#BD53ED;
    text-decoration:none;
}
h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}
p{
   color:#fff;
}

h1 span {
    color: #BD53ED;
    position: relative;
}
h1 span::before {
    content: "";
    height: 30px;
    width: 2px;
    position: absolute;
    top: 50%;
    right: -8px;
    background: #BD53ED;
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}
h1 span.stop-blinking::before {
    animation: none;
}
@keyframes blink {
    50% { opacity: 0 }
}

