*{
    margin: 0;
}

body{
    display: flex;
    flex-direction: column;
    background-color: #121212;
    height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.button-group {
    display: flex;
    align-items: center;
}

.button {
    display: flex;
    color: white;
    background-color: #121212;
    font-weight: bold;
    font-size: large;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    margin: 5px;
    outline: none;
    border-color: #F44336;
    border-width: 3px;
}

.button:hover {
    background-color: #F44336;
}

.button span {
    margin-left: 5px;
}


.editor {
    display: inline-flex;
    margin: 10px;
    padding: 5px;
    height: 100%;
    background-color: #212121;
    line-height: 20px;
    overflow-y: hidden;
    border-radius: 1%;
}


.editor textarea{
    width: 100%;
    scroll-behavior: smooth;
    resize: none;
    background-color: transparent;
    color: #E0E0E0;
    outline: none;
    border: 0;
    overflow-y: scroll;
    line-height: 20px;
}

.editor textarea::-webkit-scrollbar {
  width: 5px;
}

.editor textarea::-webkit-scrollbar-track {
  background: #414141;
}

.editor textarea::-webkit-scrollbar-thumb {
  background: #F44336;
}

.editor textarea::-webkit-scrollbar-thumb:hover {
  background: #F44336;
}

.start-icon {
    color: #F44336;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 900;
    font-size: larger;
    max-height: fit-content;
}


.logo {
    height: 40px;
    cursor: pointer;
}

.loading {
    animation: shoot 1s infinite ;
}

@keyframes shoot {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
    
}