:root {
    --background-color: rgb(255, 255, 255);
    --text-color: rgb(0, 0, 0);
    --links-color: #00ff00;
    --text-size: 16px;
    --text-size-mobile: 18px;
}

html {
    scrollbar-color: var(--links-color) var(--background-color);
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: var(--background-color);
    font-size: var(--text-size);
    color: var(--text-color);
}

#girl {
    position: absolute;
    bottom: 50px;
    right: 50px;
}


/* About */
.about--wrapper {
    max-width: 500px;
    padding: 30px 50px 50px 50px;
    transform: rotate(-1.5deg);
}

.about--block {
    padding-bottom: 20px;
}

.turn-right {
    padding-top: 20px;
    transform: rotate(3deg);
}

#links {
    transform: rotate(1.5deg) !important;
}

.links-bio {
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--links-color);
    color: var(--text-color);
    font-style: italic;
    transition: 0.5s ease; 
}

ul {
    list-style-type: "⭑ ";
    /* color: var(--links-color); */
    margin: 5px 0;
    padding-left: 30px;
}


/* Hovers, highlights, animations */
.links-bio:hover {
    color: var(--links-color);
}

::-moz-selection { /* Firefox */
    /* color: white; */
    background: var(--links-color);
}
  
::selection {
    /* color: white; */
    background: var(--links-color);
}

#soft {
    text-shadow: 0 0 15px var(--links-color);
    text-decoration: none;
    /* animation: glow 3s linear infinite; */
    /* -webkit-animation: glow 3s linear infinite; */
}

@keyframes glow {
    0% { text-shadow: 0 0 15px var(--links-color); }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 15px var(--links-color); }
}
    
@-webkit-keyframes glow {
    0% { text-shadow: 0 0 15px var(--links-color); }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 15px var(--links-color); }
}


/* Responsiveness */
@media screen and (max-width: 600px) {
    body {
        font-size: var(--text-size-mobile);
    }

    .about--wrapper {
        padding-bottom: 0;
    }

    #girl {
        position: relative;
        display: block;
        margin: auto;
        bottom: 0px;
        right: 0px;
    }
}