@font-face {
    font-family: "Scto-Medium";
    src: url("../fonts/Scto_Medium.otf") format("opentype");
}

@font-face {
    font-family: "Scto-Bold";
    src: url("../fonts/Scto_Bold.otf") format("opentype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    padding: 10px;

    font-family: "Scto-Medium", sans-serif;
    font-size: 25px;

    background: black;
    color: white;
    overflow-x: hidden;
}

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

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-size: 21px;
    margin-bottom: 40px;
}



/* Masonry Lab */

.lab-grid {
    column-count: 5;
    column-gap: 10px;
}

.lab-item {
    break-inside: avoid;
    margin-bottom: 10px;
}

.lab-item img,
.lab-item video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* MOBILE */

@media (max-width: 750px) {

    body {
        font-size: 20px;
    }

    header {
        font-size: 20px;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .lab-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .lab-item {
        margin-bottom: 10px;
    }
}