@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.gapwide {
    gap: 60px;
}

.gapsmall {
    gap: 20px;
}

@media (height < 675px) {
    html, body {
        overflow: hidden;
        
    }

    main {
        overflow: hidden;
        zoom: 50%;
    }

    h2 {
        font-size: 70px;
    }
}

@media (height >= 675px) {
    html, body { overflow: hidden; }
}

html, body {
    padding: 0;
    margin: 0;

    width: 100%;
    height: 100%;

    font-family: 'Montserrat';
    font-size: 32px;
    font-weight: 300;

    color: white;

    scrollbar-color: white transparent;
}

h1 {
    font-weight: 800;
    font-size: 90px;
}

h2 {
    font-weight: 700;
    font-size: 68px;
}

a {
    transition: all 0.2s;
}

a.text-link {
    text-decoration: none;
    color: white;
    cursor: pointer;

    font-size: 40px;
    font-weight: 200;
}

a.text-link:hover, a.text-link:focus, a.text-link.selected {
    font-weight: 500;
}

a.icon-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

a.icon-link:hover {
    color: white;
}