@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --dft-font-family:"Roboto", sans-serif;
  --dft-font-size: 20rem;
  --dft-line-height: 28rem;
  --footer-font-size: 12rem;
  --footer-line-height: 16rem;

  --color-white0: #ffffff;
  --color-grey90: #1A171B;
  --color-teal70: #0099B2;
  --color-teal60: #00bedb;
}

html {
    font-size: 1px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--dft-font-family);
    font-size: var(--dft-font-size);
    line-height: var(--dft-line-height);
    color: var(--color-grey90);
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a {
    color: var(--color-grey90);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:32px;
    height: 100svh;
    text-align: center;
    padding: 32px;
}

.logo {
    max-width: 400px;
}

.button {
    display: inline-block;
    background-color: var(--color-teal70);
    color: var(--color-white0);
    text-decoration: none;
    font-weight: bold;
    padding: 16px 48px;
    border-radius: 32px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: var(--color-teal60);
}

.link{
    font-weight: bold;
}

.footer {
    font-size: var(--footer-font-size);
    line-height: var(--footer-line-height);
}

.show-ph {
    display: none;
}

@media screen and (max-width:900px) {
    .logo {
        max-width: 300px;
    }

    .show-ph {
        display:initial;
    }
    
    .show-dk {
        display: none;
    }
}