html
{
    width: 100%;
}

body 
{
    width: 100%;
    height: 100%;
    background-color: hsl(240, 5%, 28%);
}

#container
{
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    height: 100%;
    
    margin-left: auto;
    margin-right: auto;

    margin-top: 32px;
    margin-bottom: 148px;
}

#vert_container 
{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 768px;
  height: 100%;
  gap: 32px;

  position: relative;
  left: -9px;
}

a.main_box
{
    display: block;
    
    width: 720px;
    height: 405px;
    
    box-shadow: 16px 16px 64px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(226, 226, 255, 0.25);
    
    background-image: url('images/signal_lost.jpg');
    background-repeat: no-repeat;
}

#sub_box_container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
    width: 720px;
    height: auto;
    gap: 11px;
}

a.sub_box
{
    display: block;
    
    width: 350px;
    height: 197px;
    
    box-shadow: 16px 16px 64px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(226, 226, 255, 0.25);
    
    background-size: contain;
    background-repeat: no-repeat;
}

#press
{
    display: inline-block;
        
    font-family: 'bebas_neueregular', sans-serif;
    font-size: 40px;
    line-height: 54px;
    color: #fff;
    
    background-color: #17171a;
    
    position: fixed;
    right: 0px;
    bottom: 130px;

    height: 54px;
    padding-left: 18px;
    padding-right: 18px;

    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

a
{
    border: 0px;
    text-decoration: none;    
}

a:hover
{
    opacity: 0.7;
}

a.press_link
{
    font-family: 'bebas_neueregular', sans-serif;
    font-size: 40px;
    line-height: 54px;
    color: #fff;
}

#footer
{
    display: inline-block;
        
    font-family: 'bebas_neueregular', sans-serif;
    font-size: 40px;
    line-height: 48px;
    color: #fff;
    
    background-color: #17171a;
    
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 116px;
    
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1250px) {
    #dev_info {
        display: none;
    }
    #vert_container {
        width: auto;
    }
    #screwfly_logo {
        position: relative;
        left: -10px;
        padding-top: 3px;
        width: 724px;
        height: 113px;
    }
    #footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('bebasneue-webfont.eot');
    src: url('bebasneue-webfont.eot?#iefix') format('embedded-opentype'),
         url('bebasneue-webfont.woff2') format('woff2'),
         url('bebasneue-webfont.woff') format('woff'),
         url('bebasneue-webfont.ttf') format('truetype'),
         url('bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;

}