* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.main{ 
    min-width: 1000px;
    padding: 20px;
}
.main .container{
    width: 100%;
}
.main .container .header{
    font-size: 1rem;
    padding: 10px;
    background: linear-gradient(rgb(0,88,169), rgb(0,128,204));
    color: #fff;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.main .container .body{
    height: 80rem;
    border: 2px solid #75abdd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.content{
    position: relative;
}
.same{
    position: absolute;
    transform: translateX(-50%);
}
.content a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content a img{
    width: 20rem;
}
.content a:hover img{
    border: 1px solid #7df9b9;
}
.content a p {
    font-size: 1rem;
    font-weight: 800;
}
.content a:hover p{
    color: red;
}
.content .c1{
    top: 5rem;
    left: 25%;
}
.content .c2{
    top: 5rem;
    left: 49%;
}
.content .c3{
    top: 45rem;
    left: 50%;
}
.content .c4{
    top: 8rem;
    left: 75%;
}

table{
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  height: auto;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
table tr td{
  border: 2px dashed rgb(1, 102, 255);
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 10px;
}
table tr td p{
    padding: 5px;
    color: #000;
  }
table tr td a img{
    background: #f7f7f7;
}

.back{
    color: #000;
    font-weight: 1000;
    width: 10rem;
    height: 4rem;
}
.back img{
    padding-left: 20px;
    width: 3rem;
    position: absolute;
    left: 2%;
    top: 7.5rem;
}
.back p{
    width: 6rem;
    position: absolute;
    left: 5%;
    top: 7.3rem;
    font-size: 1.3rem;
}

.modal {  
    display: none;  
    position: fixed;  
    z-index: 1;  
    left: 0;  
    top: 0;  
    width: 100%;  
    height: 100%;  
    overflow: auto;  
    background-color: rgba(0, 0, 0, 0.9);  
}  

.modal-content {  
    margin: auto;  
    display: block;  
    width: 80%;  
}  

.close {  
    position: absolute;  
    top: 2rem;  
    left: 90%;  
    color: #f1f1f1;  
    font-size: 5rem;  
    font-weight: bold;  
    cursor: pointer;  
}