body{
    background-image: url("public/assets/animation.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.content{
    display: flex;
    justify-content: center;
    height: 80vh;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.my-name{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.025em;
    line-height: 2.5rem;
    font-weight: 700;
}

.photo{
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    margin: 0;
    animation: zoomIn 0.5s ease 0.1s backwards;
}

.photo img{
    height: 10rem;
    width: 10rem;
    border: 4px solid #000000;
    padding: 3px;
    border-radius: 5rem;
    box-sizing: border-box;
}

.slogan{
    padding: 0;
    margin: 0;
    animation: zoomIn 0.5s ease 0.5s backwards;
}

.slogan p{
    font-size: 0.75rem;
    line-height: 1rem; 
    font-family:'raleway', sans-serif;
    text-align: center;
    letter-spacing: 0.025em;
    font-weight: 300;
}



.what-I-do{
    animation: zoomIn 0.5s ease 0.6s backwards;
}

.what-I-do p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    text-align: center;
    margin: 0;
    margin-bottom: 5px;
}

.links a{
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: transform 0.3s ease;
    animation: zoomIn 0.5s ease 0.2s backwards;
    padding: 0;
}

.links a:hover{
    transform: scale(1.15);
}

.links a img{
    width: 3.5rem;
    height: 3.5rem;
}

@media(min-width: 768px){
    .links a img{
        width: 4rem;
        height: 4rem;
    }
}

@keyframes zoomIn{
    from{
        transform: scale(0.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}