/*
Theme Name: term_iso
Author: Your Name
Description: A custom WordPress theme called term_iso
Text Domain: thermiso
Version: 1.0
*/

@font-face {
    font-family: 'Playfair 144pt';
    src: url('fonts/Playfair144pt-Light.eot');
    src: url('fonts/Playfair144pt-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Playfair144pt-Light.woff2') format('woff2'),
        url('fonts/Playfair144pt-Light.woff') format('woff'),
        url('fonts/Playfair144pt-Light.ttf') format('truetype'),
        url('fonts/Playfair144pt-Light.svg#Playfair144pt-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 28pt';
    src: url('fonts/Inter28pt-Thin.eot');
    src: url('fonts/Inter28pt-Thin.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter28pt-Thin.woff2') format('woff2'),
        url('fonts/Inter28pt-Thin.woff') format('woff'),
        url('fonts/Inter28pt-Thin.ttf') format('truetype'),
        url('fonts/Inter28pt-Thin.svg#Inter28pt-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 28pt';
    src: url('fonts/Inter28pt-Bold.eot');
    src: url('fonts/Inter28pt-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter28pt-Bold.woff2') format('woff2'),
        url('fonts/Inter28pt-Bold.woff') format('woff'),
        url('fonts/Inter28pt-Bold.ttf') format('truetype'),
        url('fonts/Inter28pt-Bold.svg#Inter28pt-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 28pt';
    src: url('fonts/Inter28pt-Regular.eot');
    src: url('fonts/Inter28pt-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter28pt-Regular.woff2') format('woff2'),
        url('fonts/Inter28pt-Regular.woff') format('woff'),
        url('fonts/Inter28pt-Regular.ttf') format('truetype'),
        url('fonts/Inter28pt-Regular.svg#Inter28pt-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
    --noir : #282828;
    --blanc: #FFFFFF;
    --jade : #4E888F;
    --grislight: #EDEDED;
    --transparent : rgba(255,255,255,0);
}

html{
    font-size: 16px;
}
body{
    font-size: 1rem;
    text-align:center;
    margin:0;
    font-family: 'Inter 28pt';
    font-weight: normal;
    color: var(--noir)
}
a{
    text-decoration: none;
    color: var(--jade);
    transition: all 0.2s ease;
}
a:hover{
    color: var(--noir)
}
img{
    height: auto;
    vertical-align: middle;
}
.wrap{
    overflow: clip
}
.home main{
    margin: 0 auto;
    width:90%;
    max-width: 1680px;
}