/* This is the CSS file for Tage Bushman's assignments
at Western Technical College. (C) 2023, Tage Bushman
All Rights Reserved */

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;800&display=swap');

body {
    font-size: 18px;
    font-family: 'Nanum Gothic', sans-serif;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.container {
    display: grid;
    overflow-wrap: break-word;
    grid-template-rows: auto;
    grid-template-columns: 15% auto;
    border: solid 2px black;
    grid-template-areas: 
    "title"
    "updated"
    "tasks";
}

.title {
    grid-area: title;
}

.updated {
    grid-area: updated;
}

.tasks {
    grid-area: tasks;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.task-list {
    padding-left: 30px;
    line-height: 2;
}

.padding {
    padding: 5px;
}

.heading {
    background-color: black;
    color: white;
    font-size: 20px;
}

.left-border {
    border-left: solid 2px black;
}

.right-border {
    border-right: solid 2px black;
}

.bottom-border {
    border-bottom: solid 2px black;
}

.section-header {
    background-color: lightgray;
    color: black;
    width: auto;
    font-weight: bold;
    margin: 10px 0px;
}

.instructions ul, ol {
    line-height: 2;
}

.answer {
    font-weight: bolder;
    border-left: solid 5px #A60E00;
    background-color: #F7F7F7;
    border-radius: 15px;
    margin: 15px 50px;
    padding: 20px
}

.letters {
    list-style-type: upper-alpha;
}

.footer{
    text-align: right;
    background-color: lightgray ;
    width: auto;
    padding: 5px;
    margin-top: 30px;
}

.header {
    text-align: right;
    padding: 5px;
}

.copyright {
    font-size: 12px;
    color: #A0A0A0;
}

/* CSS for HTML Basics Worksheet */

.ball{
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	background-color: orangered;
	width:50px;
	height:50px;
	line-height: 50px;
	color:white;
	text-align: center;
	font-size: 24px;
}

/* CSS for EVENTS worksheet */

#someTagId{
    width:200px;
    padding:10px;
    background-color: midnightblue;
    color:white;
    border-radius: 10px;
}

#myDiv{
    width:200px;
    padding:10px;
    background-color: red;
    color:white;
    border-radius: 10px;
    margin-top: 20px;
}

#orangeDiv{
    width:200px;
    padding:10px;
    background-color: orange;
    color:white;
    border-radius: 10px;
    margin-top: 20px;
}

#greenDiv{
    width:200px;
    padding:10px;
    background-color: green;
    color:white;
    border-radius: 10px;
    margin-top: 20px;
}

/*
MEDIA QUERIES
*/
@media all and (max-width : 800px) {
	span.inline-img{
		display:block;
		width:50%;
	}
}