#title {
    /* It defines a title elements of my website. */
    background-color: aqua; /* It sets the background color(aqua) of an element. */
    font-size: 35px; /* It sets the font-size (35px) of an element. */
    font-weight: bolder; /* It sets how bold or not characters in text be shown. */
    color: pink; /* It sets the color(skyblue) of an element. */
    text-align: center; /* It sets the horizontal alignment of text. */
    height: 130px; /* It species the height(130px) of an element. */
    padding: 10px; /* It identifies the padding(10px) of an element. */
    margin: 0; /* It states the margin(0) of an element. */
    line-height: 1.2; /* It states the height(1.2)of a line. */
    letter-spacing: 1px; /* It sets the horizontal spacing(1px) behavior between texts. */
    word-spacing: 2px; /* It sets the length spacing(2px) behavior between texts. */
    text-transform: uppercase; /* It states capitalize of elements' text. */
    border-radius: 10px; /* It defines the radius(10px) of the element's border. */
    outline: none; /* It is a line that does not have outline. */
    cursor: default; /* It shows when the mouse pointer is over the elements. */
    transition: background-color 0.3s ease-in-out; /* It makes transition one side to other side be smooth (0.3s) as background. */
    opacity: 0.9; /* It is that degree(0.9) which things are behind an element is hidden. */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* It adds shadow effects(1px 1px 3px rgba(0, 0, 0, 0.2)) around of element's frame. */
}

#name {
     /* It defines a name elements of my website. */
    background-color: lime;
    font-size: 44px;
    font-weight: bolder;
    color: darkblue;
    text-align: center;
    height: 39px;
    padding: 10px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 1.5px;
    word-spacing: 1px;
    text-transform: capitalize;
    border-radius: 5px;
    outline: none;
    cursor: default;
    transition: color 0.3s ease-in-out;
    opacity: 0.95;
    box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.2);
}

#school {
     /* It defines and styling school elements of my website. */
    background-color: teal;
    font-size: 44px;
    font-weight: bolder;
    color: black;
    text-align: center;
    height: 90px;
    padding: 10px;
    margin: 0;
    line-height: 2.3;
    letter-spacing: 1.5px;
    word-spacing: 2px;
    text-transform: capitalize;
    border-radius: 5px;
    outline: none;
    cursor: default;
    transition: color 0.3s ease-in-out;
    opacity: 0.85;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.buttons {
     /* It defines a buttons elements of my website. */
    background-color: darkslategray;
    font-size: 20px;
    width: 290px;
    height: 30px;
    border: 5px gray outset; /* It adds a border to specific element. */
    border-radius: 5px;
    color: grey;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    line-height: 2.5;
    display: inline-block; /* It sets an element's outer and inner display. */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.buttons:active {
     /* It defines a buttons:active elements of my website. */
    border: 5px gray inset;
    transform: scale(0.95); /* It makes element to rotate, scale, and translate. */
}

.buttons:hover {
     /* It defines a buttons:hover elements of my website. */
    background-color: gray;
    color: lightgray;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.description {
     /* It defines a project of my website. */
    background-color: silver;
    text-decoration: none;
    color: blue;
    font-size: 30px;
    padding: 2px;
    margin: 9px;
    line-height: 1.2;
    word-spacing: 2px;
    letter-spacing: 1px;
    text-align: center;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.description:hover {
     /* It defines a project:hover of my website. */
    color: royalblue;
    text-decoration: underline; /* It sets the apperance of decorative lines. */
}

#me {
    background-color: chocolate;
    font-size: 20px;
    width:230;
    padding:20px;
}

.yo {
    background-color: skyblue;
    font-size: 25px;
    width:230;
    padding:20px;
    margin:20px;
    box-shadow: 2px 1px 2px rgba(0, 1, 1, 0.8);
}

.so {
    background-color: lightblue;
    font-size: 20px;
    width:230;
    padding:20px;
}

#testimonials {
   background-color: lime;
   padding: 13px;
   margin: 7px;
   border: 2px aqua;
   border-radius: 10px;
   box-shadow: 2px 1px 2px rgba(1, 0, 3, 0.5);
   outline: none;
   width: 130%;
   transition: background-color 0.7s ease-in-out;
}

#contents {
     /* It defines a contents elements of my website. */
    background-color: pink;
    padding: 20px;
    margin: 10px;
    border: 2px solid red;
    border-radius: 45px;
    box-shadow: 2px 1px 2px rgba(0, 0, 2, 0.2);
    outline: none;
    overflow-y: auto; /* It shows content overflows edge direction(up,down) of block-level elements. */
    overflow-x: hidden; /* It shows content overflows edge direction(left,right) of block-level elements. */
    max-height: 81vh; /* It states an element's maximum height. */
    display: block;
    width: 130%;
    transition: background-color 0.3s ease-in-out;
}

#lists {
     /* It defines a lists of my website. */
    width: 1240px;
    background-color: bisque;
    padding-left: 12px; /* It sets the width of padding area as left(102px). */
    padding-top: 10px; /* It sets the width of padding area as top(10px). */
    padding-bottom: 21px; /* It sets the width of padding area as bottom(51px). */
    border: 2px solid darkred;
    border-radius: 9px;
    outline: none;
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    line-height: 8;
    display: block;
    transition: background-color 0.3s ease-in-out;
}

.list {
     /* It defines a list of my website. */
    color: navy;
    font-size: 13px;
    font-weight: bold;
    padding: 67px;
    margin: 2px 0;
    line-height: 1.5;
    font: italic;
    text-align: left;
    border-bottom: 1px solid darkred;
    border-radius: 4px;
    outline: none;
    word-spacing: 2px;
    letter-spacing: 1px;
    cursor: default;
    transition: color 0.3s ease-in-out;
}

#top {
     /* It defines a top elements of my website. */
    position: fixed; /* It specifies element to display on the page */
    bottom: 25px; /* It sets the vertical position */
    right: 20px; /* It sets the horizontal position */
    width: 50px;
    height: 50px;
    background-color: cornflowerblue;
    text-align: medium;
    line-height: 10px;
    border-radius: 5px;
    border: 2px solid blue;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#top:hover {
    /* It defines a top:hover elements of my website. */
    background-color: rgb(145, 215, 162);
    box-shadow: 3px 7px 12px rgba(0, 0, 0, 0.6);
    color: black;
}

.top {
    /* It defines a .top elements of my website. */
    text-decoration: none;
    color: orange;
    font-size: 11px;
    font-weight: italic;
    padding: 5px;
    line-height: 122;
    transition: color 0.3s ease-in-out;
}
