@font-face {
    font-family: 'font_bold';
    src: url('../fonts/MazdaType-Bold.otf');
}
@font-face {
    font-family: 'font_bold_italic';
    src: url('../fonts/MazdaType-BoldItalic.otf');
}
@font-face {
    font-family: 'font_small';
    src: url('../fonts/MazdaType-Regular.otf');
}
@font-face {
    font-family: 'font_small_italic';
    src: url('../fonts/MazdaType-MediumItalic.otf');
}
:root {
    --warna-text:#fff; /* Definisikan variabel warna utama */
  }
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    background-color:#151313;
    flex-direction: column;
    font-family: 'font_small', sans-serif;
}

.logo-container {
    width: 100%;
    position: absolute;
    top: 20px;
    left:50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo-gaikindo {
    height: 50px;
}

.logo-mazda {
    height: 50px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
