body {
    background-color: #000;
    color: #fff;
    font-family: 'roboto', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.container h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;

}

.container button {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    background-color: #bd1010;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    border: 1px solid #faf8f8;

}



.container a {
    color: #b20b0b;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
    color: #092da2;

}


@media (max-width: 768px) {
    .container h1 {
        font-size: 2rem;
    }

    .container p {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {
    .container h1 {
        font-size: 1.5rem;
    }

    .container p {
        font-size: 0.8rem;
    }
}


@media (max-width: 320px) {
    .container h1 {
        font-size: 1.2rem;
    }

    .container p {
        font-size: 0.6rem;
    }
}