* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: #faf3f3;
}

.nav-bar {
    width: 100%;
    height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background-color: #fff6f6;
    border-bottom: 1px solid rgb(185, 178, 178);
}

.nav-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
}

.nav-socials {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-top: 65px;
    margin-left: 20px;

    align-items: center;
    justify-self: start;
}

.nav-socials img {
    height: 40px;
    object-fit: contain;

    transition: transform 0.2s ease;
}

.nav-socials img:hover {
    transform: scale(1.1);
}

.nav-icon {
    justify-self: center;
}

.nav-icon-img {
    height: 110px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    display: inline-block;

    text-decoration: none;
    font-size: 20px;
    font-family: "Playwrite IE", cursive;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: bold;
    white-space: nowrap;
    color: #61777F;

    transition: transform 0.2s ease;
}

.nav-bar a:hover {
    transform: scale(1.1);
}