* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/font/Gotham Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/font/Gotham Medium 2.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MaestroTimes';
    src: url('/assets/font/MaestroTimes Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MaestroTimes';
    src: url('/assets/font/MaestroTimes Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MaestroTimes';
    src: url('/assets/font/MaestroTimes Bold Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

:root{
    --dark-blue: rgb(8, 28, 41);
    --light-blue: rgb(0, 150, 181);
    --gold: rgb(207, 163, 74);
    --beige: #F2EFE4;
    --font-text: 'Gotham', sans-serif;
    --font-title: 'MaestroTimes', serif;
}

body{
    background-color: var(--beige);
    height: 100vh;
    max-width: 1320px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1.title{
    color: var(--dark-blue);
    font-family: var(--font-title);
    font-style: italic;
    text-align: center;
    font-size: 45px;
}

h2.title{
    color: var(--dark-blue);
    font-family: var(--font-title);
    font-style: italic;
    text-align: center;
    font-size: 35px;
}

p{
    color: var(--dark-blue);
    font-family: var(--font-text);
    font-weight: 300;
    text-align: center;
}

.logo{
    height: 150px;
    width: auto;
    margin-bottom: 50px;
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.contact .contact-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-button{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    gap: 50px;
    align-items: center;
}

.link{
    text-decoration-color: var(--gold);
    text-underline-offset: 8px;
    color: var(--dark-blue);
    font-family: var(--font-text);
    font-weight: 300;
    text-transform: uppercase;
}

.link:hover{
    color: var(--gold);
}

@media (max-width: 767px) {
    .contact-button{
        flex-direction: column;
    }
    h1.title{
        font-size: 40px;
        line-height: 1;
    }
    .hero{
        gap: 20px;
    }
}