/*
  Web-Designed by James Dinh ᓚᘏᗢ from scratch using HTML, CSS, and JS
  For more info, contact jamesdinh77 (at) protonmail (dot) com

  Copyright Disclaimer: This Source Code is Copyright (c) 2023 James Dinh All Rights Reserved.
*/

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(30, 30, 30);
    color: white;
    margin-bottom: 50px;
}

main {
    padding: 20px 10px;
}

.media-child {
    padding: 10px 20px;
    margin: 10px 40px;
    justify-content: center;
    background-color: rgb(68, 68, 68);
    border-radius: 5px;
}

.main-parent {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    min-width: 300px;
    max-width: 1100px;
    margin: auto;
}

@media (max-width: 993px) {
    .out-parent {
        display: flex;
    }
}

@media (max-width: 550px) {
    .output3 {
        width: 300px !important;
        height: 300px !important;
    }
    .letter-chart {
        display: none;
    }
}

.letter-container {
    margin: 0 20px;
}

.output-header {
    margin: 10px 0;
}

.letter-chart {
    height: 250px;
    width: auto;
}

#output {
    display: flex;
    min-width: 150px;
    max-width: 400px;
    justify-content: center;
    border: 2px solid white;
    border-radius: 5px;
    padding: 20px 5px;
    font-size: 50px;
    color: white;
}

.panel-heading {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: white;
    text-align: center;
}

.panel-block video, .panel-block canvas {
    margin: 10px auto;
}

.input-container {
    display: none;
}

.control3 {
    justify-content: center;
    display: flex;
    margin: auto;
}

.control-panel {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: auto;
    max-width: 750px;
}

.repo-link {
    margin: auto;
    text-align: center;
    padding: 10px 20px;
}

.link {
    color:rgb(204, 116, 219);
}