:root {
    --link-color: lightblue;
    --text-color: yellow;
    --shadow-color: white;
}

* {
    box-sizing: border-box;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none;  
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    background-color: rgb(113, 31, 255);
    background-image: url("eyes.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

h1 {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    color: var(--text-color);
    /*background-color: blue;*/
    text-shadow: 0px 0px 2px var(--shadow-color);
}

a {
    text-decoration: underline dotted;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    color: var(--link-color); 
    cursor: pointer;
}

a:visited {
    color: var(--link-color);   
}

.modal {
    display: none;
    margin: 0rem 0rem 0rem .2rem;
}

.brmodal {
    display: none;
}

.artisttext {
    max-width: 33%;
    /*background-color: red;*/
    box-shadow: 0px 0px 2px var(--shadow-color),

}

#lightup {
    color: red; 
    filter: drop-shadow(0 0 5px red);
}

#clipboard {
    text-decoration: underline dotted;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    color: var(--link-color); 
    cursor: pointer;
}

#mail-click {
    display: inline;
}

#insta {
    display: inline;
}

@media (max-width: 1250px) {

    .artisttext {
        max-width: 66%;
    }

    #mail-click {
        display: inline-block;
    }
    
  }