@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #ccc;
    font-family: 'Roboto';
    font-size: 16px;
    overflow: hidden;
}

a {
    color: #ccc;
    text-decoration: none;
    pointer-events: all;
    transition: color .1s ease-out;
}
a:hover {
    color: #ffff00;
}

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

#logo {
    width: 100%;
    max-width: 320px;
    margin-bottom: 100px;
}

.text {
    line-height: 24px;
}

.textLine {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.material-symbols-outlined {
    vertical-align: middle;
}