@charset "UTF-8";

@font-face {
    font-family: 'khandlight';
    src: url('fonts/khand-light-webfont.woff2') format('woff2'),
         url('fonts/khand-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

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

:root {
    font-size: 16px;
    --color-text: rgba(255, 255, 255, 1);
    --color-background: rgba(0, 44, 66, 1);
    --color-white: rgba(255, 255, 255, 1);
    --color-gold: rgba(159, 139, 100, 1);
    --txt-std-size: 1.23rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'khandlight','Helvetica-neue', 'Helvetica', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: grid;
    grid: auto 12rem / 100%;
    gap: 1.5rem;
    place-items: center;
    min-height: 100dvh;
    padding: 1rem;
}

h1 {
    text-transform: uppercase;
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1.5;
}

p {
    font-weight: 300;
    font-style: normal;
    font-size: 1.15rem;
    line-height: 1.8;
}

.content {
    min-height: 40vh;
    min-width: 70vw;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}


.iconbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 4rem;
}


.svg-icon {
    max-width: 18rem;
    height: auto;
    display: block;
}

a, a:hover,a:active, a:visited, a:focus {
    color: var(--color-text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}