@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins:wght@200&display=swap');


.main404 {

    min-height: 100vh;
    width: 100%;

color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

font-family: 'Poppins', sans-serif;
}

.main404 a {
    margin-top: 2.5em;

    padding: .6em;
    text-decoration: none;
    min-width:9rem;
    border: .2em solid red;
    border-radius: .6em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: red;
    font-weight: bold;


}

.main404 a:hover {
    transition: 650ms;
    transform: scale(.9);
}