.scripts {
    display: block;
    min-width: 580px;
    max-width: 1200px;
    text-align: start;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.script {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 6px;
    font-weight: normal;
    background: #d5428623;
}

.script p {
    font-size: 20px;
    font-weight: bold;
}

.script p span {
    font-size: 14px;
    font-style: italic;
    margin: 5px;
}

.script a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    background: #d5428723;
    border-radius: 4px;
    transition: .5s;
}

.script a:hover {
    background: #911557c4;
}

@media (max-width: 600px) {
    .scripts {
        min-width: 0px;
        max-width: 100%;
    }
    .script {
        display: block;
    }
    .script a {
        margin-top: 5px;
    }
}