@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");

html {
    background-color: #0c0613;
}

html,
body {
    font-family: "Jost", sans-serif;
    color: #f7f7e0;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#title {
    margin: 0;
    font-size: 6rem;
    animation: glow 1.5s alternate infinite ease;
}

#prompt {
    font-weight: 300;
}

@keyframes glow {
    0% {
        text-shadow: 0px 0px 16px #cfe8f7c9;
    }
    100% {
        text-shadow: 0px 0px 8px #7bcadd9d;
    }
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
}

input {
    margin-bottom: 24px;
    font-family: inherit;
    font-size: 1.2rem;
    transition: 0.3s;
}

input:focus {
    outline: none;
    box-shadow: 0px 0px 8px #f7f7e0;
}

input[type="text"],
input[type="url"] {
    width: 100%;
    padding: 12px 24px;
    border-radius: 36px;
    background: #f7f7e0;
}

#path {
    font-size: 1rem;
    padding: 8px 18px;
    width: 40%;
}

input[type="submit"] {
    width: auto;
    padding: 4px 24px;
    background: #f7f7e0;
    transition: 0.3s;
    border-radius: 36px;
}

input[type="submit"]:hover {
    box-shadow: 0px 0px 4px #f7f7e0;
}

#warp-container {
    font-family: "Space Mono", monospace;
}

#warp-text {
    text-shadow: 0px 0px 4px #f7f7e0;
}

@media screen and (max-width: 768px) {
    form {
        width: unset;
    }

    #path {
        width: 100%;
    }

    #warp-container {
        width: 100%;
        padding: 10px;
    }

    pre {
        overflow-x: auto;
        white-space: pre-wrap;
        white-space: -moz-pre-wrap;
        white-space: -pre-wrap;
        white-space: -o-pre-wrap;
        word-wrap: break-word;
    }
}
