.second {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.o_second {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: var(--ok);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.o_second h1 {
    font-size: 35px;
    padding-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.o_second button {
    padding: 1em 3em;
    color: var(--ok);
    margin: 20px;
    border: none;
    width: 25em;
    height: 3em;
    border-radius: 1000px;
    font-weight: 900;
    font-size: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(to bottom right, rgb(255, 98, 124), rgba(0, 0, 255, 0.868));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.1s ease;
    cursor: pointer;
}

.o_second button:hover {
    transform: scale(1.05);
    background-image: linear-gradient(to bottom right, rgb(255, 98, 124), rgba(0, 0, 255, 0.868));
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1300px) {
    .o_second h1 {
        font-size: 25px;
    }

    .o_second button {
        width: 20em;
        height: 2.5em;
        font-size: 10px;
    }

    .o_second button:hover {
        width: 21em;
        height: 2.6em;
    }

}