body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f3f3;
}

.profile-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.title {
    font-size: 18px;
    color: #0077B5; /* LinkedIn Blau */
}

.location {
    font-size: 14px;
    color: grey;
    margin-bottom: 20px;
}

.connect-button {
    background-color: #0077B5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.connect-button:hover {
    background-color: #005582;
}

.hack-screen {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #0F0;
    font-family: 'Courier New', Courier, monospace;
}

.hack-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.hack-text h1 {
    font-size: 48px;
    color: #F00;
    margin: 0;
	background-color: rgba(0,0,0,0.8);
	animation: blink 1s infinite;
}

.emoji {
    font-size: 64px;
    vertical-align: middle;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}