* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Gill Sans, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    padding: 30px;
}

.main-wraper {
    max-width: 1400px;
    min-height: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: #181818;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: #1e1e1e;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input[type="text"],
form textarea,
form input[type="file"] {
    background: #2a2a2a;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    width: 100%;
}

form textarea {
    resize: vertical;
    height: 60px;
}

form input[type="submit"] {
    background: #007acc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

form input[type="submit"]:hover {
    background: #005fa3;
}

#main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #1f1f1f;
    padding: 20px;
    width: 250px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    transform: perspective(1000px);
}

.card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(3deg);
    background-color: #2a2a2a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}


.profile-pic {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a7afb5;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h3 {
    font-size: 20px;
    margin: 10px 0 5px;
}

h5 {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

p {
    font-size: 13px;
    line-height: 1.4;
}