@font-face {
    font-family: "gyreheros-bold";
    src: url("../../fonts/gyreheros-regular.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

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

:root {
    color-scheme: light;
}


body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "gyreheros-bold", Arial, sans-serif;

    background-color: black;
    color: white;
}

body.gallery-page {
    background-color: black;
    color: white;
}


.text-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;

    width: 100%;
    margin: 0;
    padding: 0;
    gap: 3rem;
    background-color: black;
}

.text-link {
    font-family: "gyreheros-bold", Arial, sans-serif;
    text-decoration: none;
    color: white;
    font-weight: 400;
    cursor: pointer;
    font-size: 80px;
}


.image-section {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.image-column {
    display: flex;
    flex-direction: column;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .text-link {
        font-size: 45px;
    }

    .image-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .image-column {
        gap: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {
    .image-section {
        padding-left: 200px;
        padding-right: 200px;
    }

    .image-column {
        gap: 200px;
    }
}

@media (min-width: 1441px) {
    .image-section {
        padding-left: 800px;
        padding-right: 800px;
    }

    .image-column {
        gap: 200px;
    }
}
