* {
    cursor: url(../img/smlz.cur), auto;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&display=swap');
body {
    font-family: 'Roboto Mono', monospace;
    min-height: 750px;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #d400ff;
    font-size: 1.5em;
    text-decoration: line-through;
}

ul li {
    background-color: #2cdb0f;
    text-decoration: none;
    list-style-type: none;
    color: inherit;
    padding: 2px;
}

/* Styles for the header */
.header {
    background-color: rgba(3, 3, 207, 0.377);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
    max-width: 980px;
}

.container img {
    margin: 0;
    padding: 0;
    width: 33.33%;
}

.container hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: black;
    margin: 20px 0;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 5%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.link-container a {
    display: flex;
    align-items: center;
    flex-basis: 30%;
    text-align: center;
    text-decoration: none;
    color: black;
    padding: 5px;
    margin: 0 10px 10px 10px;
    border-radius: 5px;
}

.link-container a img {
    margin-right: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(3, 3, 207, 0.377);
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .link-container a {
        flex-basis: 45%;
    }
}

#wrp-l {
    display: flex;
    flex-direction: row;
    min-width: 450px;
    position: fixed;
    text-align: center;
    top: 30%;
    width: 100%;
    height: 100%;
}

#nav {
    margin-top: 80px;
    height: 100%;
    width: 90%;
}

#cntct {
    min-width: 450px;
    background-color: #4af6fb;
    width: 50%;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
}

#myDIV {
    background-color: #fff;
}

.txt-wht {
    color: #ffffff;
    background-color: #00236b;
}

.center {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blink {
    animation: blinker 2s linear infinite;
    color: #ff0000;
    background-color: #0bd568;
    border: 1px solid #fff;
    font-size: 5em;
}

@keyframes blinker {
    60% {
        opacity: 0;
    }
}

.typewriter h1 {
    background-color: #ffffff;
    position: relative;
    padding: 4% 0% 4% 0%;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}

.hbutton {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.hbutton:hover:after {
    top: 0;
    left: 0;
}

.hbutton:after {
    content: "";
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 5px;
    left: 5px;
    transition: 0.2s;
    background-color: #ff6392;
}

.main-img {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    background-color: #002
}