@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    font-family: "Ubuntu Mono", monospace;
    margin: 0;
    padding: 0;
    cursor: default;
}

body {
    background-color: black;
    color: chartreuse;
    height: 100vh;
    width: 60vw;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

a {
    all: unset;
    cursor: pointer;
}

a:hover {
    filter: drop-shadow(0 0 0.05rem chartreuse);
    /* transform: translateY(10px); */
}

u:hover, img:hover {
    cursor: pointer;
}

.header,
.footer {
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    border-bottom: 1px solid rgb(46, 46, 46);
    display: flex;
    justify-content: space-between;
}

.blink {
    animation: blinker 1.5s ease-in infinite;
    filter: drop-shadow(0 0 0.05rem chartreuse);
}

.slow-blink {
    animation: blinker 3s ease-in infinite;
    filter: drop-shadow(0 0 0.05rem chartreuse);
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.navbar {
    display: flex;
    gap: 45px;
}

.theme-btn {
    cursor: pointer;
}

.footer {
    border-top: 1px solid rgb(46, 46, 46);
    display: flex;
    justify-content: space-between;
}

.copyright-span {
    font-size: 33px;
}

.icons img:hover {
    transform: rotate(20deg);
}