@charset "utf-8";

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    line-height: 60px;
    background: #FFCCFF;
    display: inline-block;
    vertical-align: middle;
}

header.logo{
    padding: 0 20px;
    font-size: 40px;
    color: #fff;
    letter-spacing: 2em;
}

header ul{
    padding: 0 30px;
}

header li{
    display: inline-block;
    padding: 0 6px;
    font-size: 14px;
    letter-spacing: 1em;
}

header li a{
    color: #000;
}

header li a:hover{
    text-decoration: underline;
}

body{
    background-color: lightpink;
    font-size:large;
    margin-left: 15px;
}

h1{
    font-size:56px;
    font-family: 'Amatic SC' , cursive;
    text-align: center;
    color: #FFFF99;
    border-bottom-style: solid;
    border-bottom-color: #FFCC66;
    border-bottom-width: 10px;
}

h2{
    font-family: 'Amatic SC' , cursive;
    text-align: center;
    color: #FF6633;
}

h3{
    text-align: center;
    border-style:groove;
}

.flex1{
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

img.SS1{
    width: 576px;
    height: 324px;
}

table{
    width: 100%;
    border-collapse: collapse;
}
  
table tr{
    border-bottom: solid 2px white;
}
  
table tr:last-child{
    border-bottom: none;
}
  
table th{
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #52c2d0;
    color: white;
    text-align: center;
    padding: 10px 0;
}
  
table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #52c2d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
  
table td{
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}