* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: url(images/bg.jpg);
    background-color: rgb(255, 255, 255);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.my-content {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(154, 158, 158);
    line-height: 1.7;
    text-align: center;
}

.my-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #000;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.my-profile:hover {
    transform: scale(1.1);
    border-left-color: crimson;
    border-right-color: blue;
    border-top-color: blue;
    border-bottom-color: crimson;
}

.my-name {
    letter-spacing: 4px;
    font-family: "Inter", "Montserrat", "Segoe UI", sans-serif;
    font-style: oblique;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-bottom: 0;
    word-break: break-word;
}

.my-name:hover {
    transform: scale(1.05);
}

.my-aka {
    letter-spacing: 4px;
    position: relative;
    bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    word-break: break-word;
}

.my-aka:hover {
    transform: scale(1.1);
}

.my-bio {
    color: rgb(224, 214, 214);
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.my-greetings {
    color: white;
}

a {
    color: rgb(154, 158, 158);
    letter-spacing: 3px;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.my-lobby {
      position: absolute;
    left: 20px;
    top: 20px;
    transform: scale(0.9);
     display: inline-block;
    padding: 20px 30px;
}
a:hover {
    color: rgb(132, 228, 210);
    transform: scale(1.1);
}

.my-github:hover {
    color: blue;
}

.my-twitter:hover {
    color: red;
}

@media (max-width: 768px) {
    .my-content {
        padding: 15px;
    }

    .my-name,
    .my-aka {
        letter-spacing: 2px;
    }

    .my-profile {
        width: 100px;
        height: 100px;
    }

    a {
        letter-spacing: 2px;
    }
}