@font-face { font-family: roboto-regular; src: url('./roboto/Roboto-Regular.ttf'); }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: roboto-regular, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  color:white;

  position: relative;
  height: 100%;
  width: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.root {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background: #1D232C;
    color: white;
}

.root2 {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

.root2>div:nth-child(2)
{
    font-size: 40px;
    font-weight: 600;
}

.root2>div:nth-child(3)
{
    font-size: 20px;
    max-width: 100%;min(80%, 1000px);
    text-align: justify;
}
















.test {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #FFE4C4;
    margin: 10px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    color: black;

    animation-name: bg_change;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}

@-webkit-keyframes bg_change { from {  } to { background: white; }  }
        @keyframes bg_change { from {  } to { background: white; }  }


.test:hover {
    opacity: 0.8;
}

.test-text>div:first-child {
    font-size: 24px;
}

.test-text>div:last-child {
    font-style: italic;
}

.test-icon {
    width: 100px;

    animation-name: move_invmodelicon;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@-webkit-keyframes move_invmodelicon { from { margin-right: 0px; margin-left: 10px; } to { margin-right:10px; margin-left: 0px; }  }
        @keyframes move_invmodelicon { from { margin-right: 0px; margin-left: 10px; } to { margin-right:10px; margin-left: 0px; }  }

.link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    color: black;
}

.link>a {
    font-size: 30px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    align-items: center;
    padding: 10px;
    overflow: auto;
    text-align: center;
}

.link>a>h1 {
    width: 150px;
    margin: auto;
}