main {
    height: fit-content;
    min-height: calc(100dvh - 100px - 151px - 25px);
}

.about {
    width: calc(100% - 50px);
    max-width: 1500px;
    height: fit-content;

    margin: 25px auto;
}

.about .profile {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.about .profile .img {
    width: 50%;
    max-width: 400px;
    height: fit-content;

    margin-right: 25px;
}

.about .profile .img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;

    border: 2px solid white;
}

.about .profile .text {
    display: flex;
    flex-direction: column;
}

.about .profile .text .name {
    font-size: 45px;
    font-weight: bold;
}

.about .profile .text ul {
    padding-left: 0px;
    font-size: 20px;
}

.about .profile .text ul li {
    list-style-type: none;
}

.about .profile .socialmedia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    margin: 50px;
    margin-right: 25px;
}

.about .profile .socialmedia a {
    font-size: 25px;

    transition: all .2s ease-in-out;
}

.about .profile .socialmedia a:hover {
    color: #a04e8b;
}

.debut {
    width: calc(100% - 25px);
    max-width: 1500px;

    margin: 0px auto;

    padding: 25px;

    text-align: center;
}

.locked {
    width: calc(100% - 50px);
    max-width: 1500px;

    margin: 25px auto;
}

.locked .locked-box {
    display: block;
    width: 100%;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border: 2px dashed #ccc;
    border-radius: 20px;

    padding: 2rem;

    text-align: center;

    color: #999;
}

.locked .locked-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 750px) {

    .about .profile {
        flex-direction: column;
    }

    .about .profile .img {
        width: 75%;
        margin: 0px auto;
    }

    .about .profile .text {
        text-align: center;
    }

    .about .profile .socialmedia {
        flex-direction: row;
        margin: 25px;
    }
}