* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial;
    background-color: #002233f9;
}

.repos-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 25px;
}

@media(min-width : 1200px) {
    .repos-container {
        width: 1170px;
    }
}

@media(min-width : 992px) {
    .repos-container {
        width: 970px;
    }
}

@media(min-width : 768px) {
    .repos-container {
        width: 750px;
    }
}

.repos-container .get-repos {
    padding: 20px;
    display: flex;
    background-color: #eeeeeeef;
    border-radius: 8px 8px 0px 0px;
    -webkit-border-radius: 8px 8px 0px 0px;
}

.repos-container .get-repos input {
    width: 100%;
    padding: 20px;
    border: none;
    font-size: 20px;
    height: 55px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.repos-container .get-repos input:focus {
    outline: 2px solid #e91e63;
}

.repos-container .get-repos .get-button {
    width: 140px;
    margin-left: 10px;
    height: 55px;
    background-color: #e91e63;
    color: white;
    line-height: 55px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.repos-container .show-data {
    padding: 20px;
    background-color: #eee;
    border-radius: 0px 0px 8px 8px;
    -webkit-border-radius: 0px 0px 8px 8px;
}

.repos-container .show-data .text-data {
    text-align: center;
    display: block;
}

.repos-container .show-data .repo-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.repos-container .show-data .repo-box:not(:last-child) {
    margin-bottom: 5px;
}

.repos-container .show-data .repo-box a,
.repos-container .show-data .repo-box .stars {
    float: right;
    margin-left: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 14px;
    width: 85px;
    text-align: center;
    padding: 3px;
    color: #fff;
}

.repos-container .show-data .repo-box a {
    text-decoration: none;
    background-color: #e91e63;
}

.repos-container .show-data .repo-box .stars {
    background-color: #009688;
}

.repos-container .show-data .repo-box a:hover {
    color: #002233f9;
}

.repos-container .show-data .repo-box .name-repo {
    display: inline-block;
    word-break: break-all;
}

@media(min-width : 768px) {
    .repos-container .show-data .repo-box .name-repo {
        max-width: 385px;
    }
}

@media(max-width:768px) {
    .repos-container .show-data .repo-box .name-repo {
        max-width: 260px;
    }
}

@media(max-width : 568px) {
    .repos-container .show-data .repo-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .repos-container .show-data .repo-box a {
        margin: 10px;
    }
}

@media (max-width : 468px) {
    .repos-container .get-repos input {
        font-size: 16px;
        border-radius: 0px;
    }

    .repos-container .get-repos .get-button {
        font-size: 14px;
        border-radius: 0px;
    }
}