@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body, html {
    margin: 0;
    padding: 0;
    background: #252739;
    font-family: "Work Sans";
    color: whitesmoke;
}

@media (max-width: 768px) {
    .normal {
        padding-inline: 16px !important;
    }

    #masthead-buttons {
        flex-direction: column !important;
        align-items: center;
    }
}

@media (max-width: 500px) {
    #logo {
        justify-content: center;
    }
}

.normal {
    padding-inline: 200px;
}

#header {
    padding-top: 50px;
}

#masthead {
    text-align: center;
    margin-top: 50px;
    background-color: #1E202F;
    padding-top: 20px;
    padding-bottom: 50px;
}

.masthead-button {
    font-size: 150%;
    background-color: #9d3bff;
    padding: 15px;
    border: 5px solid #8408ff;
    border-radius: 15px;
    outline: 5px solid transparent;
    display: inline-block;
    width: 175px;
    cursor: pointer;
    transition: outline 0.2s;
    color: whitesmoke !important;
    text-decoration: none;
}

.masthead-button:hover {
    outline: 5px solid white;
}

#masthead-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.disabled {
    background-color: #42455b !important;
    border: 5px solid #585b6e;
    cursor: not-allowed;
}

.tooltip {
    position: relative;
    display: inline-flex;
}

.tooltip-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;

    width: 175px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;

    background: #585b6e;
    color: whitesmoke;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 90%;
}

.tooltip:hover .tooltip-text {
    opacity: 1;
}

#masthead h1 {
    font-size: 250%;
}

#logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

#wordmark {
    font-size: 200%;
}

.bigger {
    font-size: 120%;
}

section {
    padding: 20px;
}

#faq {
    background: #1E202F;
    padding-bottom: 50px;
}

#footer-list {
    text-align: center;
    margin: 0;
    padding: 30px;
    list-style: none;
}

#footer-list li {
    display: inline;
    margin: 0;
    padding: 0;
}

#footer-list li a {
    color: whitesmoke !important;
}

#footer-list li + li::before {
  content: " • ";
}

#screenshot {
    display: block;
    width: max(60vw, 100%);
}

.screenshot-wrap {
    display: flex;
    justify-content: center;
}