body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--background);
    color: var(--foreground);
}

h1, h2, h3, td {
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.landing-container {
    min-height: 100vh;
    width: 100%;
    background-color: var(--background);
    color: var(--foreground);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 200px;
    padding: 40px 0px 40px 0px;

    box-sizing: border-box;
}

.first-row,
.secound-row,
.Third-row {
    flex: 1;
    max-width: 400px;
}

.first-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.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;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.4s ease;
}

a.infolandingdiv:link,
a.infolandingdiv:visited,
a.infolandingdiv:active,
a.infolandingdiv:focus {
    color: var(--foreground);
    text-decoration: none;
}

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

a.infolandingdiv:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
}

.secound-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Profile-Picture {
    text-align: center;
    margin: 0;
}

.Profile-Picture img {
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.Profile-Picture figcaption {
    font-size: 40px;
    color: var(--foreground);
    margin-top: 8px;
}

.Third-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.info-title {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 12px;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 1px;
    background-color: var(--details);
}

.info-list {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
}

.info-list dt {
    font-weight: 400;
    color: var(--foreground);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--details);
    display: flex;
    align-items: center;
    padding: 16px 0;
}

.info-list dd {
    text-align: right;
    padding: 16px 0 16px 25px;
    color: var(--foreground);
    font-size: 1.05rem;
    margin: 0;
    border-bottom: 1px solid var(--details);
}

.info-list dt:first-child {
    border-top: none;
}

.info-list a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-list a:hover {
    color: var(--details);
}

@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .first-row,
    .secound-row,
    .Third-row {
        width: 100%;
        max-width: 500px;
    }

    .Profile-Picture img {
        width: 30vh;
        height: 30vh;
    }
}