h1 {
    color: rgb(24, 132, 226);
}

p {
font-size: 18px;
}

h2 {
text-align: center;
}

body {
background-color: lightgray;
}

h3 {
text-transform: uppercase;
}

p {
line-height: 1.6;
}

a {
color: red;
text-decoration: none;
}

ul {
list-style-type: square;
}

ol {
list-style-type: upper-roman;
}

li {
margin: 5px;
}

table {
border: 1px solid black;
}  

th {
background-color: lightblue;
}


td {
padding: 10px;
}

img {
width: 200px;
border-radius: 10px;
}

button {
    background-color: rgb(12, 35, 243);
    color: white;
    padding: 8px;
}

form {
    border: 1px solid gray;
    padding: 15px;
}

input {
    border: 2px solid blue;
}

textarea {
    width: 300px;
    height: 100px;
}

audio {
    width: 250px;
}

video {
    border: 5px solid black;
}

#main-title  {
color: darkred;
font-size: 30px;
}

#intro-text {
font-style: italic;
}

#student-table {
border-collapse: collapse;
}

#profile-pic {
    border-radius: 50%;
}

#submit-btn {
    background-color: orange;
    padding: 10px;
}

#container {
    margin: 20px;
    padding: 20px;
    background-color: #eee;
}

#email-field {
    border: 1px solid red;
}

#home-link {
    color: purple;
}

#login-form {
    background: #f9f9f9;
    padding: 15px;
}

#footer-text {
    text-align: right;
}

.paragraph {
    font-family: Arial, sans-serif;
}

h2 { 
text-align: center; 
}

.highlight {
    color: red;
    font-weight: bold;
}


