body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgb(5, 11, 97);
}

#box {
    height: 500px;
    width: 800px;
    background-color: rgb(3, 22, 129);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#text{
    position: absolute;   /* Absolut positioniert relativ zur Box */
    top: 120px;           /* Positioniert das #text-Element über der Box */
    left: 50%;            /* Zentriert das Text-Element horizontal */
    transform: translateX(-50%); /* Um es wirklich exakt in der Mitte zu haben */
    color: rgb(143, 143, 143);
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
}
#in-box {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeout 1s 3s forwards;
}

#profile {
    opacity: 0;
    visibility: hidden;
    animation: fadein 1s 4s forwards;
}

#profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#profile img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 10px;
}

#profile p {
    font-family: 'Courier New', Courier, monospace;
    color: white;
}
#socials{
    opacity: 0;
    animation: fadein 1s 4s forwards;
}
.github-icon{
   height: 40px;
   width: 40px;
}
.github-button{
    
    border: none;
    background-color: transparent;
}
.github-button:hover{
    transform: scale(1.1);
    cursor: pointer;
}



@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

