@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    text-align: center;
    background: rgb(146, 194, 178);
    overflow: hidden;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 50px;
    position: relative;
}

.vinyl-container {
    position: relative;
    width: 300px; /* Adjust to the size of your vinyl image */
    height: 300px; /* Adjust to the size of your vinyl image */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl {
    position: absolute;
    width: 100%;
    height: auto; /* This keeps the aspect ratio of the image */
    z-index: 1;
}

.profile-image {
    width: 100px; /* The size of your profile image */
    height: 100px; /* The size of your profile image */
    border-radius: 50%; /* Makes the image round */
    animation: spin 10s infinite linear; /* This creates a spinning effect */
    z-index: 2;
    margin-left: -5px; /* Move to the left by 5px */
    margin-top: 5px; /* Move down by 5px */
}

/* Keyframes for spinning effect */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; /* Larger heading */
    color: #333;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
}

.links-section {
    margin-top: 20px;
}

.link {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
}

.link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.github {
    background-color: #333;
}

.twitter {
    background-color: #1DA1F2;
}

.medium {
    background-color: #00ab6c;
}
