@font-face {
    font-family: TTNorms_Bold;
    src: url(/fonts/TTNorms_Bold.ttf);
}

@font-face {
    font-family: TTNorms_Regular;
    src: url(/fonts/TTNorms_Regular.ttf);
}

@font-face {
    font-family: lulo;
    src: url(/fonts/Lulo_Clean_One_Bold.ttf);
}

:root {
    --foregroundColour: #222;
    --backgroundColour: #eee;
    --highlightColour: #FF7F50;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
    font-family: "TTNorms_Regular";
}

/* Technical Styling */

.hide {
    display: none !important;
}

.border {
    border: 3px solid;
    border-radius: 18px;
}

.flex{
    display: flex;
}

.noclick{
    pointer-events: none;
}

/* Text Styling */

.bold {
    font-family: "TTNorms_Bold";
}

.highlight, .link {
    text-decoration: none;
    color: var(--highlightColour);
}

.center {
    text-align: center;
}

/* Button Styles */

button {
    border: 0;
}

.button {
    padding: 3px 1vw;
    border-radius: 18px;
    border: 2px solid var(--highlightColour);
    margin-block: auto;
    text-align: center;
    text-decoration: none;
}

.white-btn {
    color: var(--highlightColour);
    border-color: var(--highlightColour);
    background-color: var(--white);
}

.highlight-btn {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--highlightColour);
}

/* Section Styles */

section {
    max-width: var(--contentWidth);
    margin-inline: var(--marginWidth);

    display: flex;
    flex-direction: column;
}

.shadow {
    filter: drop-shadow(rgb(70, 70, 70) 5px 5px 20px);
}

.photosect {
    justify-content: space-between;
    max-width: var(--contentWidth);
    margin-inline: var(--marginWidth);
}

.photosect img {
    width: 50%;
    object-fit: contain;
}

.photosect div {
    height: min-content;
    width: 40%;
}

@media screen and (max-width: 900px) {
    section {
        flex-direction: column;
        align-items: center;
        height: auto !important;
    }
    section div {
        flex-direction: column;
        width: 100% !important;
    }
}

.fly {
    will-change: transform;
}