@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

:root {
    --main-bg-color: #1d1d1d;
    --main-txt-color: aliceblue;
    --border-color: goldenrod;
    --main-txt-size: 4vw;
    --bg-color: rgb(19, 19, 19);
    --slogan-fz: 10vw;
    --h1-fz: 7vw;
    --right-first-block-height: 14vh;
    --oppo-fz: 56px;
}

* {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    /* background-color: #fff; */
    color: var(--main-txt-color);
    font-family: sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    background-color: transparent;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#error-body{
    width: 100%;
    height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: calc(7vh + 20px);
    margin-bottom: 20px;
}

#number-error {
    background-color: transparent;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#number-error span {
    background-color: transparent;
    font-family: 'Exo 2';
    font-weight: bold;
    font-size: 256px;
    color: goldenrod;
    text-shadow: 11px 1px 2px black;
    user-select: none;
}

h1 {
    font-family: 'Exo 2';
    text-align: center;
    font-size: 72px;
    color: aliceblue;
    margin-bottom: 20px;
}

span {
    font-family: 'Exo 2';
    font-size: 24px;
    color: aliceblue;
    text-align: center;
    max-width: 90%;
}

.button {
    margin-top: 40px;
    height: 15px;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Inter';
    color: aliceblue;
    background-color: goldenrod;
    border: none;
    transition: all .25s ease-out;
    box-shadow: 0px 2.5px 10px rgba(218, 165, 32,.55),inset 0 5px 10px transparent;
    border: 1px solid goldenrod;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 10px 35px;
}

.button:hover {
    box-shadow: none;
    transform: scale(0.975);
}

@media all and (max-width: 768px) {
    #number-error span {
        font-size: 200px;
    }
    h1 {
        font-size: 56px;
    }
    
    span {
        font-size: 22px;
    }
}

@media all and (max-width: 600px) {
    #number-error span {
        font-size: 180px;
    }
    h1 {
        font-size: 48px;
    }
    
    span {
        font-size: 18px;
    }
}

@media all and (max-width: 450px) {
    #number-error span {
        font-size: 140px;
    }
    h1 {
        font-size: 42px;
    }
    
    span {
        font-size: 16px;
    }
}
