:root {
    --background: #141414;
    --foreground: #6b7280;
    --details:    #4dabf7;
}

body {
    margin: 0;
    padding: 0;
}

h1,h2,h3,td {
    pointer-events: none; /* Can't be clicked */
    user-select: none; /* But text can still be selected */
    cursor: default; /* Shows normal cursor */
}

.landing{
    height: 100vh;
    background-color: var(--background);
    color: var(--foreground);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover; 
}

.left-half {
    position: absolute;
    left: 0%;
    width: 50%;
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
}

.right-half {
    border: solid 0px blue;
    top: 0;
    position: absolute;
    left: 50%;
    width: 50%;
    height: 100%;
    
    /* Center content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.Welcomelandingdiv {
    min-width: 150px;
    text-decoration: underline 2px;
    text-underline-offset: 10px;
    font-size: 40px;
}

.Textonlandingdiv{
    min-height: 70px;
    font-size: 30px;
}

a.infolandingdiv {
    min-height: 60px;
    font-size: 20px;
    text-decoration: none;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    /* Optional styling */
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.4s ease;
}

/* Remove visited color and keep consistent */
a.infolandingdiv:link,
a.infolandingdiv:visited,
a.infolandingdiv:hover,
a.infolandingdiv:active,
a.infolandingdiv:focus {
    color: var(--foreground);
    text-decoration: none;
}

/* hover effect */
a.infolandingdiv:hover {
    background-color: rgba(77, 171, 247, 0.1);
    transform: translateY(-4px);
}

/* Remove default focus outline and add custom */
a.infolandingdiv:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
}

.Profile-Picture {
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
}

.Profile-Picture img {
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.TextTitle-infodiv {
    min-width: 150px;
    min-height: 5vh;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--foreground);
    padding: 20px 0;
    position: relative;
    margin-bottom: 30px;
}

.TextTitle-infodiv::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--details);
}

.Text-infodiv {
    min-height: 40vh;
    min-width: 40vh;
    padding: 30px;
    background: transparent;
}

/* Table */
.info-table {
    width: 100%;
}

.info-table .label {
    font-weight: 400;
    color: var(--foreground);
    font-size: 0.95rem;
}

.info-table .value {
    text-align: right;
    padding: 16px 0 16px 25px;
    color: var(--foreground);
    font-size: 1.05rem;
}

.info-table hr {
    border: none;
    border-top: 1px solid var(--details);
    margin: 2px 0;
}
