@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@600&display=swap');

html, body {
    width: 100%;
    height: 100%;
    background-color: rgb(245, 245, 245);
    font-family: 'Titillium Web', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    overflow-x: hidden;
}

#header {
    width: 80%;
    height: 38%;
    position: relative;
    margin: 0 auto;
}

#headerTextContent {
    width: auto;
    height: auto;
    z-index: 5;
    padding: 50px;
    background-color:rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

#headerTextContent * { text-align: center; }

#title {
	font-size: 60px;
	font-weight: 500;
	margin: 0px;
}

#subtitle {
    font-size: 25px;
    font-weight: 500;
    margin: 0px;
}

#author {
	font-size: 20px;
}

a {
    text-decoration: none;
    color: rgb(100,100,100);
}

a:hover {
    color: rgb(150,150,150);
}

#scrollDown {
    height: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    position: sticky;
    bottom: 0;
}

#instructions {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#instructionsLeft, #instructionsRight {
    width: 35%;
    height: 80%;
    display: inline-block;
    margin: 60px;
    position: relative;
}

#instructionsLeft {
    text-align: center;
}

#instructionsLeft > * {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#instructionsWord {
    font-size: 70px;
    text-align: center;
}

#instructionsWord * {
    font-size: 20px;
}

#instructionsRight ol {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

#instructionsRight ol li {
    margin: 0 20px 20px 0;
}

#workingArea {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background-color: rgb(255, 255, 255)
}

textarea {
    font-family: 'JetBrains Mono';
    margin: 0 auto;
    width: 50%;
    height: 300px;
    position:relative;
    top: 0px;
    font-size: 20px;
}

#workingArea button {
    position: relative;
    display: inline-block;
    text-align: right;
}

#convert { 
    background-color: #eaeaea;
    color: rgb(21, 21, 21);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 30px;
    font-size: 25px;
    padding: 10px 30px 10px 30px;
    font-weight: 500;
    cursor: pointer;
}

#convert:hover {
    background-color: rgb(216, 216, 216);
    transition: 0.1s;
}

h1, #workingArea button {
    font-family: 'Titillium Web', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#workingArea fieldset {
    margin: 0 auto;
    width: 50%;
    font-family: 'Titillium Web', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#lolmobile {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    background-color: white;
}

#lolmobile p {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 100px;
}

@media screen and (max-width: 850px) {
    #lolmobile {
        display: block;
    }
}