:root {
    --pink: rgb(175, 47, 175);
    --darkpink: rgb(96, 26, 96);
    --white: rgb(240, 240, 240);
    --grey: rgb(169, 169, 169);
}

@font-face {
    font-family: SimSun;
    src: url(fonts/simsunb.ttf);
}

@font-face {
    font-family: VCR;
    src: url(fonts/VCR.ttf);
}

@font-face {
    font-family: "PjFrix WeatherSTAR 4000";
    src: url(fonts/pjfrixstar4.ttf);
}


html {
    cursor: url('cursor.png'), auto;		
}
a {
    cursor: url('cursor-sel.png'), auto;	
    text-decoration: none;
    color: var(--white);
}


a:active {
    color: var(--white);
    text-decoration: none;
}
a:hover {
    color: var(--pink);             /* Prevents color changes on interaction */
    text-decoration: none;     /* Ensures no underline appears on hover or visit */
}

p {
    font-family: 'PjFrix WeatherSTAR 4000';
    margin-top: 2px;
    margin-bottom: 5px;
}


h2 {
    font-family: 'VCR';
    color: var(--white);
    text-shadow: 0.5px 0.5px 0px #000, 1px 1px 0px #000, 1.5px 1.5px 0px #000, 2px 2px 0px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000;
    margin: 0px;
    margin-bottom: 0px;
}

h3 {
    font-family: 'VCR';
    color: var(--grey);
    text-shadow: 0.5px 0.5px 0px #000, 1px 1px 0px #000, 1.5px 1.5px 0px #000, 2px 2px 0px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000;
}

h3 a{
    color: var(--grey);
}

.friend {
    box-sizing: border-box;
    border: 4px solid;
    border-top-color: rgb(170, 170, 170);
    border-left-color: rgb(170, 170, 170);
    border-right-color: rgb(17, 17, 17);
    border-bottom-color: rgb(17, 17, 17);
    padding: 5px 10px;
    background: var(--darkpink);
    color: rgb(240, 240, 240);
    text-shadow: 0.5px 0.5px 0px #000, 1px 1px 0px #000, 1.5px 1.5px 0px #000, 2px 2px 0px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000;
    display: inline-block;
    letter-spacing: 1px;
    width: 100%;
}

.friend img {
    width: 100px;
    height: 100px;
}

@media screen and (max-width: 600px) {
    .friend img {
        width: 40px;
        height: 40px;
    }
}