* {
    padding: 0;
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-style: normal;
}

body {
    background: rgb(13, 17, 23);
}

header h3 {
    font-size: 100px;
    color: #fff;
    text-align: center;
    margin: 50px;
}


.navbar {
    margin: 0 15%;
    display: flex;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: italic;
    margin: 20px 0;
    margin-right: 10px;
}

.navbar a:hover {
    font-size: 21px;
    text-decoration: underline;
}

a.active {
    color: rgb(151, 151, 255);
}

hr {
    color: #fff;
}

.container {
    margin: 0 15%;
    margin-top: 30px;
    margin-bottom: 100px;
}

.gallery {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    z-index: 3;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    padding-top: 30%;
}

.close {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

footer {
    background: rgb(13, 17, 35);
}

footer img {
    height: 50px;
    margin: 20px 8%;
}

footer hr {
    color: #fff;
}

footer p {
    font-size: 18px;
    color: #fff;
    margin: 30px 8%;
}

.footer-row {
    margin: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 100px;
}

.footer-col {
    max-width: 20%;
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #cdcdcd;
    text-decoration: none;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-col p {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    line-height: 30px;
    margin: 10px 0;
}

.footer-col div {
    display: flex;
    align-items: center;
}

.footer-col div img {
    height: 15px;
    margin-right: 10px;
}