:root {
    --background: #CEECFE;
    --content-background: #00000030;
    --header-background: #00000050;
    --text: #CEECFE;
    --main: #0B9DFD;
}

* {
    box-sizing: border-box;
}

html{
    height: 100%;
}

body {
    font-family: 'Courier New', Courier, monospace; /* <<< font choice here */
    color: var(--text);
    /* text-shadow: 2px 2px 2px #000; */
    background-color: var(--background);
    /* background-position: center;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/bkgr.jpg'); */
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bkgr.jpg);
    background-size: cover;
    z-index: -1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10vh 0;
    max-width: 600px;
    width: 80%;
    min-height: fit-content;
    background-color: var(--content-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 30px #0000001a;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 16px 16px 0 0;
    background-color: var(--header-background);
    padding: 0 1rem 2rem 1rem;
    text-align: center;
}

.p-pic {
    height: 200px;
    width: 200px;
    border-radius: 200px; /* <<< Comment out for square */
    background-image: url('../img/ppic.png');
    background-size: cover;
    background-position: center;
    box-shadow: 
        inset 0 4px 6px #ffffff66, /* Top inner highlight */
        inset 0 -4px 6px #00000033,      /* Bottom inner shadow */
            0 5px 15px #0000004d; 
}

.tag {
    text-align: center;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5vh;
    padding: 5vh 2vw;
}

.links-container a {
    width: 100%;
    text-align: center;
}

.link-button {
    font-family: 'Courier New', Courier, monospace; /* <<< font choice here */
    font-weight: bold;
    font-size: large;
    color: var(--text);
    background-color: var(--main);
    padding: 1rem;
    height: auto;
    width: 95%;
    max-width: 480px;
    border-radius: 50px;
    background: linear-gradient(180deg, var(--main) 0%, var(--main) 100%); /* Light red to dark red */
    box-shadow: 
        inset 0 4px 6px #ffffff50, /* Top inner highlight */
        inset 0 -4px 6px #00000025,      /* Bottom inner shadow */
            0 5px 15px #0000004d;            /* Soft outer shadow */
    border: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.link-button:hover {
    cursor: pointer;
    filter: brightness(1.1);
    transform: translateY(-2px);
}