:root {
    --bg-color: #EBE9D5;
    --selected-color: #14162A;
    --text-color: black;
}

body {
    background-color: var(--bg-color);
    font-family: Verdana;
}

a {
    text-decoration: none;
    color: inherit;
}

#detail {
    display: none;
    font-size: 8px;
}

#content div {
    padding: 2px;
}

::selection {
    background-color: var(--selected-color);
    color: var(--bg-color);
}

.selected {
    background-color: var(--selected-color);
    color: var(--bg-color);
}

.linkedin {
    background-color: #0077b5;
    color: white;
    font-weight: bold;
}

.github {
    background-color: black;
    color: var(--bg-color);
}

.github img{
    width: 20px;
    height: 20px;
}

.button {
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 3px;
    float: left;
    margin: 3px;
}

#links {
    padding-top: 6px !important;
}

#cursor {
    position: relative;
    left: -11px;
    font-weight: bold;
    animation: cursorBlink 1s infinite;
}

#content {
    color: var(--text-color);
    position: fixed;
    left: 10%;
    top: 70%;
}

#text {
    font-weight: bold;
    font-size: 20px;
}

.linkedin.button {
    margin-left: 0px;
}


@media screen and (max-width: 1080px) {
    #content {
        position: fixed;
        left: 5%;
        top: 5%;
        width: 90%;
    }

    #break {
        display: none;
    }

    #name{
        width: 100%;
        float: left;
    }

    #skill{
        float: left;
    }

    #cursor {
        left: -3px;
    }
}

@-webkit-keyframes cursorBlink {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@-moz-keyframes cursorBlink {
    0% {
        -moz-transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -moz-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@keyframes cursorBlink {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        -o-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        -moz-transform: translateY(-50%) scale(0.9);
        -ms-transform: translateY(-50%) scale(0.9);
        -o-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        -moz-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
        -o-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}