@import url('../assets/fonts/Palanquin-Regular.ttf');

@font-face {
    font-family: Palanquin;
    src: url(../assets/fonts/Palanquin-Regular.ttf);
}

body, html {
    padding: 0;
    margin: 0;
    background-color: #FFF;
    color: #000;
    font-family: 'Palanquin', sans-serif;
    text-align: center;
}

a {
    color: #000;
    text-decoration: underline;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.presenter-container {
    width: 80%;
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.coming-soon-text {
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.logo-header {
    height: 180px;
    width: auto;
    margin: 0 auto;
}

h1 {
    font-weight: normal;
}

@media only screen and (max-width: 600px) {
    .presenter-container {
      width: 90%;
    }
  }

@media only screen and (max-width: 450px) {
    .logo-header {
        height: 150px;
    }
}

@media only screen and (max-width: 350px) {
    .logo-header {
        height: 130px;
    }
}