body {
    background-color: black;
}

p {
    color: gray;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 10pt;
}

h1 {
    color: gray;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 20pt;
    font-weight: 50;
    width: 100%;
}

.header-link {
    display: inline-block;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bold;
    padding: 10px 10px; 
}

header {
    height: 5dvh;
    width: 100%;
    display: block;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    background-color: black;
    z-index: 10;
}

footer {
    height: 10dvh;
    width: 100%;
    display: block;
    padding: 10px 0px;
    position: fixed;
    bottom: 0;
    left:0;
    text-align: center;
    background-color: black;
}

#contact{
    background-color: white;
    color: black;
    height: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.content {
    position: relative;
    top: 10dvh;
    width: 100%;
    height: 70dvh;
    align-items: center;
    text-align: center;
}

#pic {
    max-height: 100%;
    max-width: 100%;
}

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

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

.presscontent {
    height: 20dvw;
    width: 80dvw;
    margin: auto;
    margin-bottom: 5vh;
    border: 10px;
    border-color: white;
}

.presspic {
    position: relative;
    top: 10%;
    left: 5%;
    height: 80%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.presspic img {
    flex-shrink: 0;
    min-width: 100%;
    height: 100%
}

.presstitle {
    position: relative;
    top: -70%;
    left: 40%;
    height: 80%;
    width: 55%; 
    border: solid grey  ;
    border-width: 1px;
    overflow: auto;
}

.presstitle h1 {
    width: 80%;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5vw;
    color: white;
    font-weight: lighter;
    margin-bottom: -30px;
}

#buffer {
    height: 10dvh;
    width: 100%;
    display: block;
}

.presscontentmob {
    height: 80dvw;
    width: 90%;
    margin: auto;
    margin-bottom: 5vh;
    border: 10px;
    border-color: white;
    /* background-color: pink; */
    justify-content: center;
    align-items: center;
}

.presspicmob {
    position: relative;
    top: 0%;
    left: 0%;
    height: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden
}

.presspic img {
    flex-shrink: 0;
    min-width: 100%;
    height: 100%
}

.presstitlemob {
    position: relative;
    top: 5%;
    height: 40%;
    width: 90%;    
    justify-content: center;
    margin: 0 auto;
    border: solid grey  ;
    border-width: 1px;
    overflow: auto;
}

.presstitlemob h1 {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4vw;
    color: white;
    font-weight: lighter;
    margin-bottom: -30px;
}

/* if desktop */
.mobile_device_380px {
    display: none;
}
.mobile_device_480px {
    display: none;
}

/* if mobile device max width 380px
@media only screen and (max-device-width: 380px) {
    .mobile_device_380px{display: block;}       
    .desktop {display: none;}
}  */

/* if mobile device max width 480px */
@media only screen and (max-device-width: 480px) {
   .mobile_device_480px{display: block;}
   .desktop {display: none;}
}
