body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    min-height: 100vh;
    background-color: #ccd3e4;
}

h1 {
    margin-bottom: 5px;
    font-size: 28px;
}

.email-text {
    margin-bottom: 30px;
    font-size: 16px;
}

.profile-card {
    background-color: #8383aa;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 350px;
    width: 100%;
    color: white;
    font-family: Yu Gothic, sans-serif;
}

.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.social-box {
    display: block;
    width: 250px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-family: Liberation Sans, serif;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-box:hover {
    transform: scale(1.05);
}

.github {
    background-color: #24292e;
}

.linkedin {
    background-color: #0077b5;
}