body{
    background-color: black;
    color: black;
    transition: all 0.5s linear;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body a{
    color: rgb(124, 0, 0);
    text-decoration: none;
}
.background{
    background: linear-gradient(to bottom, black, black, black, rgb(116, 0, 0), rgb(122, 0, 0));
    background-repeat: repeat;
    width: 100%;
    height: 100svh;
    z-index: -1;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
}
main{
    margin-top: 50px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
}
@keyframes rotate {
    from{
        transform: rotateY(180deg) translateY(80%) scale(0.7) rotateX(-20deg);
    }
    to{
        transform: rotateY(0deg) translateY(0) scale(1) rotateX(0);
    }
}
@keyframes show {
    0%{
        opacity: 0;
    }
    90%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.card{
    width: 310px;
    height: 550px;
    border: 1px rgba(255, 255, 255, 0.473) solid;
    background-color: rgba(255, 255, 255, 0.479);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    gap: 20px;
    box-shadow: 0 0 100px black;
    perspective: 3200px;
    animation: ease-in-out 2s rotate;
}
.foto{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    animation: show 1.12s linear;
}
.foto img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 2%;
}
.emri{
    width: 100%;
    height: 50px;
    /* margin-top: 10px; */
    /* font-family: Edu AU VIC WA NT Pre; */
    color: rgba(0, 0, 0, 0.589);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid black;
    animation: show 1.12s linear;
}
.telefon{
    margin-top: 5%;
    width: 95%;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 20px;
    animation: show 1.12s linear;
}
.telefon i{
    padding: 8px;
    border-radius: 50%;
    background-color: rgba(77, 77, 77, 0.459);
    animation: show 1.12s linear;
}
.lokacion{
    width: 95%;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 20px;
    animation: show 1.12s linear;
}
.lokacion i{
    padding: 8px 10px;
    border-radius: 50%;
    background-color: rgba(77, 77, 77, 0.459);
}
.instagram{
    width: 95%;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 20px;
    animation: show 1.12s linear;
}
.instagram i{
    font-size: 19px;
    padding: 8px 9px;
    border-radius: 50%;
    background-color: rgba(77, 77, 77, 0.459);
}
.tiktok{
    width: 95%;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: show 1.12s linear;
}
.tiktok i{
    font-size: 19px;
    padding: 8px 9px;
    border-radius: 50%;
    background-color: rgba(77, 77, 77, 0.459);
}
@media (min-width: 600px) {
    .card{
        margin-top: 150px;
        transition: all 0.3s linear;
        scale: 1.3;
    }
}