.typed-cursor{
  font-size: 30px;
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #CCEEFF;
    overflow: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.background-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .background-image img {
    width: auto;
    height: 100%;
    display: block;
    }
}
@media (max-width: 768px) {
	.background-image {
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	overflow: auto;
	}
}

.container {
	background-color: rgb(101, 97, 246);
	opacity 0.5;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header img {
    width: 100px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 24px;
    color: #CCEEFF;
}

ul.links {
    list-style: none;
    padding: 0;
}

ul.links li {
    margin: 10px 0;
}

ul.links li a {
    display: block;
    background-color: #d835ee;
    color: #CCEEFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

ul.links li a:hover {
    background-color: #CCEEFF;
    color: #df4af4;
}
