* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-image: url(Body.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.heading {
    height: 50px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px #0F172A;
    background-color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading p {
    font-size: 25px;
    font-weight: 700;
    color: #895eed;
}

.container {
    height: min-content;
    width: 300px;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px #0F172A;
    background-color: #8B5CF6;
}

#image-box {
    height: 150px;
    width: 100%;
    border-bottom: 2px solid #0F172A;
    border-radius: 10px;
    user-select: none;
}

#image-box img {
    height: 100%;
    width: 100%;
}

#content {
    height: min-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 0;
}

#content h1 {
    font-size: 30px;
    font-weight: 700;
    color: #0F172A;
}

#content h2 {
    font-size: 15px;
    text-align: center;
    color: #0F172A;
}

#social-box {
    height: min-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
    padding: 8px 0;
}

.links-card {
    height: 90px;
    width: 125px;
    background-color: #0F172A;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0px 0px 2px #0F172A;
    text-decoration: none;
}

.links-card img {
    height: 45px;
    width: 45px;
    border-radius: 10px;
}

.links-card span {
    font-size: 15px;
    font-weight: 500;
    color: azure;
}

footer {
    height: min-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

footer p {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
}