body {
    font-family: "Noto Sans", sans-serif;
    color: #616161;
    background-color: #ff3833;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin: auto;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

.box {
    width: 100%;
    max-width: 600px;
    background: #fff;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 20%;
}

.title {
    margin-top: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}

a {
    color: #ff3833;
    font-weight: bold;
    text-decoration: none;
}

.footer-brand {
    font-size: 40px;
    font-weight: bold;
    text-transform: none;
}

.btn {
    display: flex;
    justify-content: center;
}

button {
    width: 170px;
    background-color: red;
    height: 40px;
    margin-top: 10px;
    color: #fff;
    font-weight: 700;
    border: none;
    font-family: "Noto Sans", sans-serif;
    border-radius: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: darkred;
}

button:active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) and (max-width: 1900px) {
    .container {
        max-width: 1024px;
    }

    .box {
        max-width: 600px;
        margin-top: 10%;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    .footer-brand {
        font-size: 50px;
    }

    button {
        width: 200px;
        font-size: 18px;
    }
}

@media (max-width: 1000px) {
    .container {
        margin-top: 20%;
    }

    .box {
        max-width: 90%;
        margin-top: 50%;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 20px;
    }

    .footer-brand {
        font-size: 60px;
    }

    button {
        width: 200px;
        font-size: 18px;
    }
}
