* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

.container {
    max-width: 1110px;
    width: 100%;
    margin: 20px auto;
    padding: 0 15px;
    text-align: center;
}

.title {
    font-size: 22px;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 15px;
    color: rgb(0 0 0 / 90%);
}

.btn {
    color: white;
    background: -webkit-linear-gradient(90deg, #000000,#1990e5);
    background: linear-gradient(90deg, #000000,#1990e5);                                    
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
}