/* Resetting some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Times New Roman, sans-serif;
    background-color: #dbfdcd;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100vw; /* Ensure content doesn't exceed viewport width */
}

.whole-page {
    background-color: #dbfdcd;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 1025px) {
    .whole-page {
        width: 600px;
        border-radius: 30px;
        box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.75);
        margin-top: 75px;
        margin-bottom: 75px;
    }

    .profile-picture {
        border-radius: 5%;
    }

    .profile-picture-box {
        width: 100%;
        margin: auto;
        padding-top: 0px;
    }

    body {
        background-color: #000000;
        background-image: url("./content/background.jpg");
        background-size: cover;
        background-position: center;
    }
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    top: -150px;
}

.name-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.name-container h1 {
    margin-top: 0px;
    margin-bottom: -5px;
}

.name-container h2 {
    margin-top: -5px;
    margin-bottom: 5px;
}

.logo {
    width: 100px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.25rem;
}

.bio-section {
    text-align: center;
    white-space: nowrap;
}

.profile-picture {
    width: 100%;
}

.profile-picture-box {
    position: relative;
    display: inline-block;
    margin: -2.5%;
}

.profile-picture-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(219, 253, 205,0) 0%, rgba(219, 253, 205,1) 85%);
}

.links-section {
    text-align: center;
    margin: 20px;
}

.links-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #222222;
    color: #fff;
    padding: 0px 20px;
    padding-left: 0;
    margin: 10px 0;
    border-radius: 13px;
    text-decoration: none;
    width: 80%;
    max-width: 500px;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #47383a;
}

.link-button.no-image {
    justify-content: center;
    padding: 20px;
}

.link-image {
    height: 100px;
    border-radius: 13px 0px 0px 13px;
}

.link-title {
    flex: 1;
    text-align: center;
    color: #123456;
    font-family: "Great Vibes", cursive;
    font-size: 25px;
    font-weight: bold;
    background: linear-gradient(to right, #d9d2e9, #FFC0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.link-box i {
    color: #FFC0CB;
    font-size: 15px;
    padding: 0px;
}

.link-box span {
    padding: 10px;
}

.link-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin: auto;
}

.socials-section {
    text-align: center;
    margin: 20px;
    margin-top: -150px;
    top: 0px;
    position: relative;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    color: #000000;
    font-size: 30px;
}

social-icons img {
    width: 40px;
    height: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}