body{
    font-family:Courier;
    background-color:#000000;
    color:#dddddd;
}
h1{
    font-size: 3em;
    text-align: center;
    margin-top: 50px;
    white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(22, end) forwards;
}
h1::after {
  content: "|";
  animation: blink 0.7s infinite;
}
.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes typing {
  from { width: 0; }
  to { width: 22ch; }
}

@keyframes blink {
  50% { opacity: 0; }
}
.content{
    max-width: 800px;
    padding: 20px;
    width: 50%;
    height: 60%;
}
.content p{
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: left;
}
.content h2{
    font-size: 2em;
    text-align: left;
}
.sidebar{
    margin-top: 50px;
    max-width: 800px;
    margin-right: 50px;
}
.card{
    background-color: #000000;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.2em;
    width: 500px;
    height: 150px;
    text-align: center;
    outline: 1px solid #ffffff61;
    margin-bottom: 40px;
    margin-top: 20px;
    
}
.container {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;        
    gap: 20px;                                  
    margin: 60px 0; 
    width:100%;  
                
}
.card:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 10px #dddddd;
}
.link{
    color: rgb(77, 53, 174);
    text-decoration: none;
}
.icon{
    display: inline-block;
    margin: 0 10px;
}
.card-title{
    font-size: 1.2em;
    margin-bottom: 40px;
    
}