body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient( to bottom,#FFFFFF, #1B1717 90%);
    background-size: 100% 200%;
    animation: gradientAnimation 5s ease-in-out infinite;
    background-repeat: no-repeat;
    overflow: hidden;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 450px;
    margin: auto;
    margin-top: 8%;
    margin-bottom: 20%;
    rotate: 45deg;
    position: relative;
    box-shadow: 0px -4px 4px hsla(0, 0, 0, 25%), 8px 8px 4px #00000040;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(153, 153, 153, 0.3) 75%);
}
 #logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    position: absolute;
    margin: auto;
    top: 8%;
    left: 12%;
    rotate:-45deg;
    border-radius: 0px 60px;
    z-index: 1;
    pointer-events: none;
}
#title{
    font-family: Poppins, sans-serif;
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin: auto;
    transform: translateY(-65%);
    rotate: -45deg;
    font-weight: 400;
    text-shadow: 1px 1px 2px #000000 , 1px 0px 2px #000000;
    z-index: 1;
    pointer-events: none;
}

.links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    position: absolute;
    margin: auto;
    margin-right: 22px;
    margin-left: 13px;
    margin-top: 24%;
    margin-bottom: 27%;
    top: 25%;
    bottom: 80%;
    left: auto;
    right: auto;
    rotate: -45deg;
    z-index: 2;
}
.link-button {
    display: inline-block;
    border: none;
    border-radius: 1000px;
    padding: 12px 24px;
    color: #FFFFFF;
    background-color: #171717;
    font-size: 16px;
    font-family: istok-web, sans-serif;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.link-button:hover {
    transform: scale(1.10);
}
#link-tele:hover{
    background-color: #0776F6;
}
#link-linked:hover{
    background-color: #0000FF;
}
#link-github:hover{
    background-color: #000000;
}
#link-x:hover{
    background-color: #000000;
}
#link-ig:hover{
    background: linear-gradient(to right, #FF0080, #FF8C00);
}
#link-cr:hover{
    background: linear-gradient(to right, #e81111, #0776F6);
}

.footer-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    opacity: 0.5;
}
#linkcr{
    margin-bottom: 5px;
}
#tele-icon {
    color: #FFFFFF;
    margin-right: 8px;
}
#x-icon {
    color: #FFFFFF;
}
#github-icon {
    color: #FFFFFF;
    margin-right: 8px;
}
#ig-icon {
    color: #FFFFFF;
    margin-right: 8px;
}
#linkedin-icon {
    color: #FFFFFF;
    margin-right: 8px;
}
#cricon{
    height: 24px;
    width: 24px;
    margin: auto;
    padding: 0;
}
@keyframes gradientAnimation {
    0% {
        background-position: 35% 70%;
    }
    50% {
        background-position: 70% 100%;
    }
    100% {
        background-position: 35% 70%;
    }
}

@media screen and (max-width: 600px) {
    body {
        margin: 0;
        padding: 0;
        height: 100vh;
        width: 100vw;
        background: linear-gradient(to bottom, #FFFFFF, #1B1717 90%);
        background-size: 100% 200%; 
        animation: gradientAnimation 5s ease-in-out infinite; 
        background-repeat: no-repeat;
        overflow: auto;
    }
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 400px; 
        height: 500px; 
        margin: auto;
        margin-top: 34%; 
        margin-bottom: 20%; 
        position: relative;
        box-shadow: 0px -4px 4px hsla(0, 0, 0, 25%), 8px 8px 4px #00000040; 
        border-radius: 10px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(153, 153, 153, 0.6) 75%);
        rotate: 0deg
    }
    #logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 150px;
        position: absolute;
        margin: auto;
        transform: translateY(-15%);
        left: 30%;
        rotate:0deg;
        border-top-left-radius: 0px;
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 0px;
        z-index: 1;
        pointer-events: none;
    }
    #title{
        font-family: Poppins, sans-serif;
        font-size: 40px;
        color: #000000;
        text-align: center;
        margin: auto;
        transform: translateY(-70%);
        rotate: 0deg;
        font-weight: 400;
        text-shadow: 1px 1px 2px #000000 , 1px 0px 2px #000000;
        z-index: 1;
        pointer-events: none;
    }
    .links {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
        position: absolute;
        margin: auto;
        margin-right: 22px;
        margin-left: 13px;
        margin-top: 32%;
        margin-bottom: 10%;
        rotate: 0deg;
        z-index: 2;
    }
}
    @keyframes gradientAnimation {
        0% {
            background-position: 35% 70%;
        }
        50% {
            background-position:70% 100%;
        }
        100% {
            background-position: 35% 70%;
        }
    }

