body {
    font-family: 'Ibarra Real Nova', serif;
    background-color: black;
    color: white;
    margin: 40px;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    overflow:hidden
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 35px;
    margin-bottom: 20px;
}

p {
    font-size: 35px;
    line-height: 1.5;
}

.arrow {
    text-decoration: none;
    transition: color 0.5s ease-in-out;
    font-size: 50px;
    position: absolute; /* Positions the arrow absolutely */
    top: 10px; /* Positions it 10px from the top */
    left: 10px; /* Positions it 10px from the left */
    padding: 20px; /* Adds 20px of padding */
}

.arrow:hover {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.5s ease-in-out;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.arrow svg path {
    fill: rgb(255, 255, 255); /* Set the color of the SVG path */
    transition: fill 0.3s ease-in-out;
}

.arrow:hover svg path {
    fill: #1f1355; /* Change color on hover */
}

.social-icons a:hover {
    color: #0073b1; /* LinkedIn color */
}

.social-icons a.github:hover {
    color: #333; /* GitHub color */
}

.social-icons a.email:hover {
    color: #d14836; /* Email color */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#image-track > a > .image{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 100% center;
}

#image-track {
    display: flex;
    position: absolute;
    gap: 4vmin;
    width: 50%;
    height: 50%;
    transform: translate(0%, 50%);
    user-select: none;
}