@font-face {
    font-family: 'October Crow';
    src: url('fonts/october_crow.ttf');
}

* {
    margin: 0;
    padding: 0;
}

body{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

a {
    text-decoration: none;
}

.phasfont{
    font-family:"October Crow";
}

.icon{
    width: 24px;
    height: 24px;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1050px;
    margin: 20px 10px;
    min-height: calc(100vh - 40px);
}

.content hr{
    width: 100%;
    border: 1px dashed rgba(204, 204, 204, 0.26);
    margin: 15px;
}

#logo{
    width: 100%;
    max-width: 400px;
}

#header{
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    width: 100%;
}

.status{
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    background: #154229;
    transition: all 0.2 ease-in-out;
    opacity: 0.7;
}

.status:hover{
    transform: scale(1.05);
    opacity: 1;
}

.status ion-icon{
    color:#fff;
    font-size: 24px;
    padding-right: 10px;
}

#links {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#links a{
    text-decoration: none;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    width: 50%;
    max-width: 220px;
}

#links ion-icon{
    color:#fff;
    font-size: 24px;
    padding-right: 10px;
}

.link_item{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(45deg, rgb(63 62 62 / 80%) 25%, rgb(42 42 42 / 80%) 75%);padding: 10px;
    border-radius: 10px;
    width: calc(100% - 40px);
}

.link_item:hover{
    transform: scale(1.05);
    background: linear-gradient(45deg, rgb(63 62 62 / 100%) 25%, rgb(42 42 42 / 100%) 75%);padding: 10px;
    
}

.link_item_row{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(45deg, rgb(63 62 62 / 80%) 25%, rgb(42 42 42 / 80%) 75%);padding: 10px;
    border-radius: 10px;
    width: calc(100% - 40px);
}

.link_item_row:hover{
    transform: scale(1.05);
    background: linear-gradient(45deg, rgb(63 62 62 / 100%) 25%, rgb(42 42 42 / 100%) 75%);padding: 10px;
    
}

.extra-links{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#footer{
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 20px 0px;
}

.card_header{
    width: auto;
    height: auto;
    text-align: center;
    margin-bottom: 7px;
}

.card_image{
    width: calc(100% - 20px);
    padding: 10px;
    box-shadow: inset 0 0 10px #161615;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}