@font-face {
    font-family: Zpix;
    src: url("fonts/zpix.ttf");
}

@font-face {
    font-family: m6x11;
    src: url("fonts/m6x11plus.ttf");
}

@font-face {
    font-family: DinkieBitmap;
    src: url("fonts/DinkieBitmap-9pxDemo.ttf");
}

.logo {
    display: flex;
    justify-content: center;
}
.logo img {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 25vh;
}
body {
    background-image: url("images/home/backgroundtile.png");
}
.webcam {
    display: flex;
    justify-content: center;
}
.webcam img {
    aspect-ratio: auto;
    height: 60vh;
    float: left;
    padding-right: 10vw;
    padding-top: 10vh;
}   
.webcam h1 {
    font-family: m6x11;
    font-size: 10vh;
    color: #4d23cf
}
.webcam p {
    font-family: DinkieBitmap, Zpix;
    font-size: 4vh;
    color: #4d23cf;
}
.apps {
    display: flex;
    flex-direction: row;
    width: 70vw;
    max-width: 1000px;
    justify-content: space-between;
    align-items: baseline;
    font-family: Zpix;
    color: #4D21CB;
    text-align: center;
    margin: auto;
    margin-top: 10vh;
}
.apps a {
    text-decoration: none;
}
.apps a:visited {
    color: #4D21CB;
}
.apps img {
    height: auto;
    width: 10vh;
}
.apps p {
    font-size: 3vh
}
@media screen and (max-width: 900px) {
    .webcam {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .webcam img {
        aspect-ratio: initial;
    }
    .apps {
        width: 60%;
        flex-wrap: wrap; 
    }
}