* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #241e1e;
    color: rgb(168, 150, 150);
}

.main_containt {
    background-color: transparent;
    margin: auto;
    width: 100%;
    height: 100%;
    min-height: 70vh;
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
}

.containt {
    width: 40%;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.containt h1 {
    font-family: Hacked;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.containt p {
    font-family: monospace;
    font-size: 20px;
    text-align: left;
}

.containt a {
    color: rgb(219, 204, 204);
}


/* fontface */

@font-face {
    font-family: Hacked;
    src: url(https://hackedfont.com/HACKED.ttf);
}


/* mediaQueris */

@media only screen and (max-width: 600px) {
    .containt {
        width: 90%;
    }
} 