@font-face {
    font-family: Quicksand;
    src: url('_assets/quicksand.ttf') format('truetype');
}

@font-face {
    font-family: JosefinSlab;
    src: url('_assets/josefin-slab.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: IMFellDouble;
    src: url('_assets/im-fell-double-pica-sc.ttf') format('truetype');
}

@font-face {
    font-family: CQMono;
    src: url('_assets/cq-mono.otf') format('opentype');
}

@font-face {
    font-family: GeoSans;
    src: url('_assets/geo-sans.ttf') format('truetype');
}

@font-face {
    font-family: CenturyGothic;
    src: url('_assets/century-gothic.ttf') format('truetype');
}

@font-face {
    font-family: Gruppo;
    src: url('_assets/gruppo-regular.ttf') format('truetype');
}

@media (max-width: 800px) and (orientation: portrait) {
img {
    max-height: 75px; 
    max-width: 200px;
}
}
@media (min-width: 801px) {
img {
    max-height: 150px; 
    max-width: 400px;
}
}

@media (max-width: 768px) and (orientation: portrait) {
h1 { 
    color: whitesmoke;
    font-size: 100px;
    line-height: 10px;
    text-align: center; 
    font-family: JosefinSlab;
}
}
@media (min-width: 769px) {
h1 { 
    color: whitesmoke;
    font-size: 140px;
    line-height: 10px;
    text-align: center; 
    font-family: JosefinSlab;
}
}

h2 {
    color: rgb(149, 203, 250);
    font-size: 30px;
    text-align: center;
    font-family: Gruppo;
}

h3 {
    text-align: center;
    font-size: 25px;
    font-family: IMFellDouble;
}

body {
    height: 100%;
    width: 100%;
    align-content: center;
    background-color: rgb(20, 20, 30);
    font-family: CenturyGothic;
}

div {
    height: 80%;
    width: 80%;
    margin: auto;
    padding: 10px;
    text-align: center;
    color: aliceblue;
    background-color: rgb(8, 10, 53);
}

.row_expanse {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

@media (max-width: 768px) and (orientation: portrait) {
.cross_expanse {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
}
@media (min-width: 769px) {
.cross_expanse {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
}

.outline_box {
    border: 3px ridge rgb(20, 20, 60);
    border-radius: 3px;
    padding: 20px;
}

@media (max-width: 768px) and (orientation: portrait) {
a {
    font-size: 13px;
    text-align: center;
    font-family: CQMono;
}
}
@media (min-width: 769px) {
a {
    font-size: 20px;
    text-align: center;
    font-family: CQMono;
}
}

a:link {
    color:cyan;
    background-color: transparent;
}

a:visited {
    color: plum;
    background-color: transparent;
}