* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #161623;
    min-height: 100vh;
    color: #fff;
    background-image: linear-gradient(20deg, rgb(239, 45, 162), #3023AE, rgb(24, 24, 241));
}

ul,
li {
    list-style: none;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profil-card {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 15px;
    position: relative;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0, 0.15);
}

.h1 {
    margin: 15px 0px;
}

.profil-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px;
}

.messege {
    margin-top: 20px;
    padding: 13px 30px;
    border-radius: 25px;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-image: linear-gradient(20deg, rgb(239, 45, 162), #3023AE, rgb(24, 24, 241));
}

.messege:hover {
    background-image: linear-gradient(20deg, rgb(239, 45, 162), #3023AE, rgb(24, 24, 241));
    transform: scale(1.05);
    /* Scale the button slightly on hover */
}

.social-media {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
    gap: 20px;
    margin-top: 20px;
}

.social-media div {
    cursor: pointer;
}

@media screen and (max-witdh:480px) {
    .container {
        height: 100vh;
    }
}