@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    color: #fff;
    background: #000;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;

    .header {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .box {
        background: linear-gradient(
            120deg,
            rgb(88, 88, 88) 0%,
            rgb(0, 0, 0) 80%
        );
        width: 1000px;
        max-width: calc(100% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        margin-top: 30px;
        padding: 25px 10px;
        box-shadow: 0 1px 15px rgba(255, 255, 255, 0.3);

        h1 {
            font-size: 20px;
            line-height: 30px;
            letter-spacing: 1px;
            color: #ecf0f1;
        }

        p {
            font-size: 14px;
            line-height: 25px;
            margin-top: 20px;
            font-weight: 600 !important;
            color: #bdc3c7;
        }
    }

    .btn {
        width: 250px;
        padding: 15px 0px;
        margin-top: 20px;
        background: #27ae60;
        color: #fff;
        font-size: 18px;
        border-radius: 5px;
        outline: none;
        border: none;
        font-weight: 600;
        text-decoration: none;
    }

    .title {
        border-bottom: 2px solid #27ae60;
        font-size: 18px;
        font-weight: 700;
        margin-top: 30px;
        width: calc(100% - 20px);
        padding-bottom: 10px;
        text-align: start;
        color: #27ae60;
    }

    video {
        width: calc(100% - 20px);
        border: 1px solid #bdc3c7;
        border-radius: 5px;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    article {
        width: calc(100% - 20px);
        max-width: 1000px;
        background: #222;
        padding: 20px 10px;
        border-radius: 10px;
        text-align: left;

        h2 {
            font-size: 20px;
            margin: 10px 0;
            color: #2ecc71;
            font-weight: normal;
            letter-spacing: 1px;
        }

        p {
            font-size: 14px;
            color: #bdc3c7;
            line-height: 23px;
            letter-spacing: 0.5px;
        }
    }
}

footer {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #ecf0f1;
}
