* {
    scrollbar-color: #6a8383 #343f3f;
    scrollbar-width: medium;
    scroll-behavior: smooth;
    font-family: 'Oxanium';
    scroll-behavior: smooth;
}

p {
    font-family: 'Ubuntu', sans-serif;
    color: white;
}

#mainName {
    color: white;
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
}

#minor {
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
}

.grad {
    background: linear-gradient(to bottom, #f32170, #ff6b08,
            #cf23cf, #eedd44);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.gradDef {
    background: linear-gradient(to right, #FF6A00 40%, #FF00DC 60%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

#profileImg {
    width: 225px;
    height: 225px;
}

/* home links */

#centreGrid {
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-auto-columns: auto;
    gap: 50px;
    /* grid-template-columns: repeat(auto-fit); */
    /* grid-auto-rows: auto; */
    justify-content: center;
}

#home-links {
    margin: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-columns: auto;
    /* gap: 0px; */
    /* grid-template-columns: repeat(auto-fit); */
    /* grid-auto-rows: auto; */
    justify-content: center;
    /* align-items: center; */
}

.link {
    margin: 10px;
    padding: 10px;
    display: block;
    text-align: center;
    /* background-color: #15171B; */
    width: 125px;
    font-size: 1rem;
}

.linkpng {
    width: 100px;
    height: 100px;
    position: relative;
    margin: auto;
}

.linkpng .img-h {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.linkpng:hover .img-h {
    display: inline;
}

.linkpng:hover .img-nh {
    opacity: 0%;
}


/* about me */
#abt {
    font-size: 1.5rem;
}

#abtMeTitle {
    text-align: center;
    font-size: 2.3rem;
    color: white;
}

#aboutMeCard {
    list-style-position: inside;
    border-radius: 1rem;
    border: 2px solid #8a8a8a;
    min-width: min-content;
    max-width: 900px;
    padding: 15px;
    margin: 15px;
    display: inline-block;
    column-gap: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #15171B88;
    text-align: left;
}

@media (min-resolution: 1.5dppx) {
    #mainName {
        font-size: 5rem;
    }

    #minor {
        font-size: 1.5rem;
    }

    .link {
        font-size: 2rem;
        margin: 0 10px;
    }

    #abtMeTitle {
        font-size: 4rem;
    }

    #abt {
        font-size: 2rem;
    }
}