/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('img/background-purple-space.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4500;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Links Section */
.tile-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.tile {
    background: #ff4500;
    padding: 0 15px; /* Horizontal padding only */
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 450px;
    height: 50px; /* Fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Prevents padding from affecting size */
    overflow: hidden; /* Prevents any overflow if text is too large */
}

.tile:hover {
    background: #e63e00;
}

/* Social Media Icons */
.social-media-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-media-logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-media-logo:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background: transparent;
    font-size: 0.9rem;
    text-align: center;
}
