body {
    margin: 0;
    padding: 0;
    background-image: url("./BG.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;


}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
}

h2 {
    font-size: 64px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;

}

a {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;

}

@media (max-width: 993px) {
    h2 {
        font-size: 56px;
        width: 100%;
        text-align: center;
    }

    p {
        width: 100%;
        text-align: center;

    }

    a {
        width: 100%;
    }


}