@import url('https://fonts.googleapis.com/css2?family=Kalam&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');


body, html {
    margin: 0;
    padding: 0;
}


.background {
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-attachment: fixed; /* Fixed background */
    background-position: center center;
    height: 100vh; /* 100% of viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    color: white;
}


.content {
    padding: 20px;
}


h1 {
    font-size: 36px;
    margin: 0;
}


h2 {
    font-size: 18px;
    margin-top: 0px;
}

h3 {
    font-size: 18px;
    margin-top: 0px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 10px; 
}

.social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}


.profile-picture {
    text-align: center;
}

.profile-picture img {
    width: 150px; 
    height: 150px;
    border-radius: 50%; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
