.profile-page {
    min-height: 400px;
    position: relative;
}

.profile-page h1 {
    font-size: 40px;
    text-align: center;
}

.profile-page .btn {
    margin: 20px;
    width: 100px;
}

.profile-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.profile-index_item {
    text-align: center;
    padding: 10px;
    min-width: 170px;
    background-color: #155144;
    color: #fff;
    border: 1px solid #fff;
}    

.profile-index_item:hover {
    background-color: #1a8f75;
}

@media all and (max-width: 1300px) {
    .profile-index {
        padding: 20px;
    }
}

@media all and (max-width: 420px) {
    .profile-index {
        padding: 0;
    }

    .profile-index_item {
        width: 50%;
    }
}

@media all and (max-width: 341px) {
    .profile-index_item {
        width: 100%;
    }
}