@font-face {
    font-family: Hackdaddy;
    src: url("Hackdaddy.otf") format("opentype");
}

body{
    margin: 0;
    position: relative;
    font-family: 'Hackdaddy';
    height: 100dvh;
    width: 100dvw;
}

.bg-matrix{
    position: absolute;
    z-index: -1;
    height: 100dvh;
    width: 100dvw;
}

main{
    height: 100dvh;
    width: 100dvw;
    backdrop-filter: blur(1px);
    display: flex;
    flex-direction: column;
}

.event-name{
    color: #fff;
    font-size: 64px;
    text-align: center;
    background-color: rgba(0, 255, 0, 0.02);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    position: relative;
}

.event-name .ctf{
    font-size: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px 32px;
    background-color: #00ff00;
}

.event-name .ctf::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 32px;
    background-color: #00ff00;
    left: -32px;
    top: 0;
    transform: skew(-30deg, 0deg);
    transform-origin: bottom left;
}

.flag{
    margin: auto;
    min-height: 327px;
}

.flag .flag1{
    height: 12px;
    width: 200px;
    background-color: #00ff00;
}

.flag .flag2{
    height: 12px;
    width: 120px;
    margin: 1px 40px;
    background-color: #00ff00;
}

.flag .flag3{
    height: 220px;
    width: 4px;
    margin: 1px 98px;
    background-color: #00ff00;
}

.flag .flag4{
    height: 80px;
    width: 160px;
    margin-left: calc(100% - 94px);
    transform: translateY(82px);
    background-color: #00ff00;
    text-align: center;
    line-height: 80px;
}

.levels{
    margin: auto;
    display: flex;
    flex-direction: row;
}

.levels .level{
    color: #fff;
    text-decoration: none;
    padding: 12px;
    margin: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.levels .level:hover, .levels .level:focus, .levels .level:active{
    background-color: #00ff00;
    transition: 1s;
}

.warning{
    color: red;
    text-align: center;
    margin-bottom: 0;
    padding: 12px;
}