body {
    font-family: 'Fira Code', monospace;
    background-color: #0d1117;
    color: #c9d1d9;
    text-align: left;
    padding: 10px;
    display: flex;
    margin: 5px;
    justify-content: center;
    align-items: center;
}
.content {
    background: #161b22;
    border: 2px solid #58a6ff;
    width: 90%;
    max-width: 800px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}
a {
    color: #58a6ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
form {
    margin-top: 10px;
}
label, input, textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    background: #0d1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 5px;
    font-family: 'Fira Code', monospace;
}
button {
    background: #58a6ff;
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
}
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}


.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: white;
    justify-content: center;
    flex: 1;
    width: 97%;
    margin-right: 1px;
    margin-left: 1px;
    background: #007bff;
}
 
.btn i {
    font-size: 20px;
}

.btn:hover {
    opacity: 0.8;
}


.linkedin {
    background: #0077b5;
}

.github {
    background: #333;
}

@media (max-width: 600px) {
    .contact-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
    
        max-width: none;
    }
}
.separator {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    margin: 20px 0;
}