* {
    box-sizing: border-box;
}
a,
a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none;
    color: #000000;
}
body 
{
    margin: 0;
    padding: 0;
}
.banner {
    padding: 80px 0 20px 0;
    width: 1200px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.banner-row.flex-row {
    display: flex;
    flex-direction: row;
}
banner-row.flex-col {
    display: flex;
    flex-direction: column;
}
.banner-row:not(:first-of-type) {
    margin-top: 40px;
}
.banner-row.row-1 .col.left {
    width: 40%;
    padding-right: 40px;
}
.banner-row.row-1 .col.right {
    width: 60%;
    padding-left: 40px;
}
.banner .logo-404 {
    display: block;
    width: 100%;
    max-width: 500px;
}
.banner .http-code {
    font-size: 10rem;
    font-family: Verdana;
}
.banner .http-text {
    font-size: 5rem;
    font-family: Calibri;
}
.row.cl {
    font-size: 2rem;
    font-family: Calibri;
    line-height: 2.8rem;
}
.row-2 .row:not(:first-of-type) {
    margin-top: 150px;
}
.box 
{
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #c5d6f2;
}
.proxy {
    color: #057feb;
    font-family: Verdana;
    margin: 0 auto;
    width: fit-content;
    text-transform: uppercase;
}
.button
{
    padding: 5px 15px;
    background-color: #c5d6f2;
    width: fit-content;
    font-family: Verdana;
    font-size: 1rem;
    position: relative;
    cursor: pointer;
    transform: rotate(3deg);
    transition: ease 0.25s all;
    margin: 0 auto;
}
.button:hover {
    transform: rotate(0deg);
}
.button:hover:after
{
    transform: rotate(-180deg);
}
.button:hover:before
{
    transform: rotate(180deg);
}
.button:after {
    transition: ease 0.25s all;
    content: '';
    top: -6px;
    left: -6px;
    position: absolute;
    border: 1px solid #000000;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    transform: rotate(-8deg);
    pointer-events: none;
}
.button:before {
    transition: ease 0.25s all;
    content: '';
    top: -6px;
    left: -6px;
    position: absolute;
    border: 1px solid #000000;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    transform: rotate(-4deg);
    pointer-events: none;
}
