@font-face {
    font-family: 'Roboto Condensed';
    font-weight: 700;
    font-style: normal;
    src: url('fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-weight: 400;
    font-style: normal;
    src: url('fonts/RobotoCondensed-Regular.ttf') format('truetype');
}


html {
    height: 100%;
}

body {
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #10203e;
    background-position: center;
    background-attachment: fixed;
}

a {
    color: white;
    text-decoration: none;
}

.error-wrapper {
    color: white;
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.title {
    font-size: 130px;
    font-weight: bold;
    line-height: 1;
}

.description {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 35px;
}

button {
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
    position: relative;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    color: #fff;
    opacity: 1;
    font-weight: 700;
    border: 1px solid #fff;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, .1);
    width: max-content;
    letter-spacing: 0.32px;
    transition: all .5s;
    padding: 14px 58px;
}

button:hover {
     background-color: rgba(255, 255, 255, .25);
}

.badbrowser {
    background-color: #0A1E36;
    background-image: url(./badbowser_background.jpg);
    background-size: 75%;
    background-position: top;
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.badbrowser-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.badbrowser-content {
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 750px;
    height: 340px;
}

.badbrowser-content__title {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.badbrowser-content__browser {
    padding: 25px 0 0;
    text-align: center;
    font-size: 20px;
    line-height: 23.44px;
    color: #fff;
    display: none;
}

.badbrowser-content__description {
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    line-height: 23.44px;
    color: #fff;
}

.badbrowser-content__buttons {
    padding-top: 20px;
    text-align: center;
}

.badbrowser-content__button {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 23.44px;
    color: #80DAFF;
    cursor: pointer;
    padding-left: 45px;
}

.badbrowser-content__button.chrome {
    margin-right: 40px;
}

.badbrowser-content__button.chrome::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url(./chrome.png);
}

.badbrowser-content__button.firefox::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url(./ff.png);
}

.badbrowser-content__button a {
    text-decoration: none;
    border-bottom: 1px solid #80DAFF;
    color: #80DAFF;
    opacity: .95;
}

.badbrowser-content__button:hover a {
    opacity: 1;
}