/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
}

nav {
    display: flex;
    width: 100%;
    justify-content: flex-end; 
    align-items: center;
    gap: 2rem;
}

.smugstudio {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5vw;
    font-style: italic;
    font-weight: 600;
    color: #EBF227 !important;
    text-decoration: none;
}

.keyboard {
    font-family: 'IBMPlexMono', monospace;
    font-size: 1.5vw;
    color: #EBF227 !important;
    text-decoration: none;
    margin-left: auto;

}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    font-weight: 500;
    color: #EBF227 !important;
    z-index: 1000;
}


.socials {
    display: flex;
    gap: 2rem;

}

.instagram,
.youtube {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3vw;
    font-weight: 500;
    color: #EBF227 !important;
    text-decoration: none;
}


.copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    font-weight: 500;
    color: #EBF227 !important;
    text-decoration: none;
}

main {
    padding-top: 4rem;
    padding-bottom: 3rem;
}