@font-face {
    font-family: 'Lil Grotesk';
    src: url('../lilgrotesk/LilGrotesk-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Blinds Audience';
    src: url('../blindsaudience/Blinds\ Audience.otf') format('woff');
}
:root {
    --gold: #996D2F;
    --white:#FEF1E8;
    --green: #0e1c15;
}

body {
    background: #FEF1E8;
    font-family: 'Lil Grotesk';
    font-size: 1em;
    overflow-x: hidden;
    box-sizing: border-box;
    width:100vw;
    min-width: 100vw;
    max-width:100vw;
    letter-spacing: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

button {
    background: #996D2F;
    border-radius: 0px 20px 0px 20px;
    color: white;
    font-size: 20px;
    font-family: 'Lil Grotesk';
    transition: 0.3s ease;
    padding:0.5em 1em;
}

a:link, a:visited {
    text-decoration: none !important;
}

a {
    text-decoration: none;
}

.img:hover {
    cursor: pointer;
}

.gold {
    color: #996D2F;
}

.green {
    color: #0e1c15;
}

.black {
    color: black;
}

h1 {
    font-family: 'Blinds Audience';
    color: var(--gold);
    padding-bottom:1rem;

}

h2{
    margin-bottom:1rem;
}
p {
    font-family: 'Lil Grotesk', sans-serif;
    color: var(--gold);
    font-weight: 100;
}

div {
    font-family: 'Lil Grotesk', sans-serif;
    color: var(--gold);
}

@font-face {
    font-family: 'Blinds Audience';
    src: url(blindsaudience/Blinds\ Audience.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lil Grotesk';
    src: url(lilgrotesk/LilGrotesk-Regular.otf);
}

.olympic-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.olympic-carousel img {
    width: 40em;
    height: 40em;
    object-fit: cover;
}

@media screen and (max-width: 700px) {
    body {
        margin: 0;
        min-width:100vw;
    }
    .olympic-carousel img{
        max-width:80vw;
        max-height:80vw;
    }
    }
