* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.parent {
    background-color: bisque;
}

#head {
    background-color: aliceblue;
    margin: 10px 100px;
    border: solid purple 5px;
    text-align: center;
    border-radius: 10px;
    /* # for id, . for class*/
}

h1 {
    color: black;
    font-weight: bold;
}

h2 {
    color: yellow;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 35px;
    -webkit-text-stroke: 0.8px black;
}

h3 {
    color: blue;
    font-weight: normal;
    font-style: italic;
    font-size: 25px;

}


.content {
    background-color: aliceblue;
    margin: 10px 100px;
    border: solid yellow 10px;
    text-align: center;
    border-radius: 10px;
}

.medsos {
    background-color: aliceblue;
    margin: 10px 100px;
    border: solid palegreen 10px;
    text-align: center;
    border-radius: 10px;
}

.table1 {
    border: 5px;
    border-radius: 10px;
    border-style: double;
    border-color: black;
    margin-left: auto;
    margin-right: auto;
}

#title1 {
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
}

ul {
    list-style: none;
}

ol {
    margin: 10px 50px;
}

.closing {
    color: blue;
    text-align: center;
}

.button0 {
    background-color:chartreuse;
    border-radius: 5px;
    color: black;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 100px;
}