.nav {
    background-color: #f0f0f0;
    padding: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.nav a {
    margin-bottom: 0px;
    text-decoration: none;
    color: rgb(59, 66, 172);
    padding: 10px 20px;
    border-radius: 5px;
    margin: auto;
    background-color: #c3b9c925;
    box-shadow:
    inset 2px 2px 2px rgba(196, 154, 230, 0.7),
    inset -2px -2px 2px rgba(100, 188, 223, 0.4),
    5px 5px 5px rgba(170, 170, 170, 0.096); 
    border: #007BFF 1px solid;
    transition: all 0.3s ease;
}

.nav a:hover {
    box-shadow:
    inset 5px 5px 5px rgba(100, 188, 223, 0.4),
    inset -5px -5px 5px rgba(196, 154, 230, 0.7),
    5px 5px 5px rgba(0, 0, 0, 0.014); 
    border: #007BFF 1px solid;
}

.content {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    height: 150px;
    border: #007BFF 1px solid;
    margin: 30px;
    margin-bottom: 50px;
    width: fit-content;
    border-radius: 70px;
    background-color: #c3b9c925;
    box-shadow:
    inset 5px 5px 5px rgba(196, 154, 230, 0.7),
    inset -5px -5px 5px rgba(100, 188, 223, 0.4),
    5px 5px 5px rgba(0,0,0, 0.5); 
}

img {
    width: 180px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.274);
    margin: 30px;
    margin-left: 50px;
    transform: skew(10deg,20deg);
}
img.two {
    width: 180px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.274);
    margin: 30px;
    margin-left: 50px;
    transform: skew(-10deg,-20deg);
}
img.three {
    position: absolute;
    width: 180px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.274);
    margin: 30px;
    margin-left: 285px;
    top: 708px;
    transform: skew(10deg,20deg);
}
img.four {
    position: absolute;
    width: 180px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.274);
    margin: 30px;
    margin-left: 285px;
    top: 329px;
    transform: skew(-10deg,-20deg);
}
.box {
    opacity: 1.0;
    width: fit-content;
    transition: 1s ease;
}
.box:hover {
    opacity: 0.0;
}
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #4b69b9;
    margin-top: 50px;
    background-color: #c3b9c925;
    box-shadow:
    inset 5px 5px 5px rgba(196, 154, 230, 0.7),
    inset -5px -5px 5px rgba(100, 188, 223, 0.4),
    5px 5px 5px rgba(0,0,0, 0.5); 
}