* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.mc {
    display: flex;
}

.head_wrapper {
    background: #3f3f3f;
    width: 100%;
    height: 1.5rem;
}

font, span {
    position: absolute;
}

.head_logo {
    background-color: #f1f1f1;
    height: 3.5rem;
}

.left, .right {
    position: absolute;
}

/* Navbar Styles */
.navbar {
    display: flex;         
    justify-content: center; 
    list-style-type: none;  
    padding: 0;             
}

nav ul {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
}

nav ul li {
    display: inline; 
    margin-right: 10px; 
}

nav ul li a {
    text-decoration: none; 
    color: #686868; 
    padding: 5px 10px; 
    font-size: .8rem;
}

nav ul li a:hover {
    color: #07a3eb; 
}

/* Back Button Styles */
.back {
    color: #000;
    font-weight: 1000;
    width: 10rem;
    height: 4rem;
}

.back img {
    padding-left: 20px;
    width: 3rem;
    position: absolute;
    top: 7.6rem;
    left: 2%;
}

.back p {
    width: 6rem;
    position: absolute;
    left: 5%;
    top: 7.3rem;
    color: #000;
}

a:hover p {
    color: red;
}

/* Main Content Styles */
.main { 
    min-width: 1000px;
    padding: 20px;
}

.main .container {
    width: 100%;
}

.content {
    position: relative;
}

.same {
    position: absolute;
    transform: translateX(-50%);
}

/* Table Styles */
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 {
    color: black;
    font-weight: 1000;
}

table tr td img {
    border: 1px solid black;
}

/* Image Positioning */
.content .c1 { top: 4rem; left: 15%; }
.content .c2 { top: 4rem; left: 25%; }
.content .c3 { top: 4rem; left: 35%; }
.content .c4 { top: 20rem; left: 25%; }
.content .c5 { top: 20rem; left: 35%; }
.content .c6 { top: 4rem; left: 58%; }
.content .c7 { top: 4rem; left: 70%; }
.content .c8 { top: 4rem; left: 80%; }
.content .c9 { top: 20rem; left: 70%; }
.content .c10 { top: 20rem; left: 80%; }
.content .c11 { top: 40rem; left: 14.5%; }
.content .c12 { top: 40rem; left: 27.5%; }
.content .c16 { top: 40rem; left: 40.5%; }
.content .c13 { top: 40rem; left: 59%; }
.content .c14 { top: 40rem; left: 72%; }
.content .c15 { top: 40rem; left: 85%; }

/* Modal Styles */
.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;  
}

/* Footer Styles */
.foot {
    height: 8rem;
    width: 100%;
    background-color: #f1f1f1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 90%;
}

.foot a {
    color: #686868;
}

.foot a:hover {
    color: #07a3eb;
}