body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url(background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.hyther {
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-picture {
    width: 128px;
    height: 128px;
    overflow: hidden;
    margin: 20px auto;
    border: 3px solid pink;
    border-radius: 50%;
}
.profile-picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.centered-block {
    background-color: rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
.link-block {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.4s ease;
    height: 50px;
    width: 400px;
    text-decoration: none;
}
.link-block:hover {
    background-color: rgba(113, 241, 255, 0.3);
}
.link-block:last-child {
    margin-bottom: 35px;
}
.link-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}
.link-name {
    font-weight: bold;
    color: gray;
}
.description {
    font-weight: bold;
    font-size: 24px;
}
.others {
    font-size: 20px;
    text-align: left;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: auto;
    width: 400px;
}
.copytext {
    cursor: pointer;
}
.copytext:hover {
    color: lightblue;
}

@media (min-width: 0px) and (max-width: 992px){
    .profile-picture {
        width: 25%;
        height: 25%;
        overflow: hidden;
        margin: 20px auto;
        border: 3px solid pink;
        border-radius: 50%;
    }
    .profile-picture img {
        width: 100%;
        height: auto;
        border-radius: 50%;
    }
    .centered-block {
        width: 90%;
        max-width: none;
    }
    .link-block {
        display: flex;
        align-items: center;
        margin-bottom: 1%;
        cursor: pointer;
        padding: 2%;
        border: 2px solid #ccc;
        border-radius: 10px;
        transition: background-color 0.4s ease;
        height: 10%;/*50px*/
        width: 80%; /*400px*/
        text-decoration: none;
    }
    .link-block:hover {
        background-color: rgba(113, 241, 255, 0.3);
    }
    .link-block:last-child {
        margin-bottom: 8%;
    }
    .link-image {
        width: 11%; /*50px*/
        height: 11%; /*50px*/
        margin-right: 1%;
        border-radius: 50%;
    }
    .link-name {
        font-weight: bold;
        color: gray;
        font-size: 170%; /*24px*/
    }
    .description {
        font-weight: bold;
        font-size: 250%; /*24px*/
    }
    .others {
        font-size: 200%;
        text-align: left;
        align-items: center;
        margin-bottom: 1%;
        padding: 2%;
        border: 2px solid #ccc;
        border-radius: 10px;
        height: auto;
        width: 80%;
    }
} 
