* {
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 10vh;
}

body {
    font-family: 'IBM Plex Mono', monospace;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    font-weight: 500;
}

h3 {
    font-size: 1.5em;
    font-weight: 500;
}

h4 {
    font-size: 1.3em;
    font-weight: 400;
}

p {
    font-size: 1.2em;
}

hr {
    height: 35px;
    border-width: 0;
}

.main-header {
    padding: 5px 0px;
    background-color: #681f6a;
    min-height: 10vh;
    position: sticky;
    top: 0;

    display: flex;
    align-items: center;
}

.main-nav_items {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    white-space: nowrap;
    flex-wrap: wrap;
}

.main-nav_item {
    padding: 6px 10px 6px 10px;
    display: block;
}

.main-nav_item>a {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}

.main-nav_item>a:hover {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}


@media screen and (max-width: 560px) {
    .main-nav_item>a {
        font-size: 1em;
    }

    .main-nav_item>a:hover {
        font-size: 1em;
    }

}

.top-container {
    background-color: #a7e08e;
    height: 90vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
}

.middle-container {
    background-color: rgb(255, 142, 142);
    padding: 2% 2% 4% 2%;

}

.headerlogo {
    width: 200px;
    height: 200px;
}

.skill-row {
    margin: 20px 0px 0px 0px;
}

.barch {
    text-decoration: underline;
}

.mailbtn {
    color: rgb(24, 24, 24);
    font-weight: 700;
}

.footer-container {
    padding: 0;
    min-height: 10vh;
    background-color: rgb(51, 51, 121);

    display: flex;
    align-items: center;

}

.footer_items {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    white-space: nowrap;
    flex-wrap: wrap;
}

.footer_item {
    padding: 0 10px 0 10px;
    display: block;
}

.footer_link {
    color: white;
    font-size: 1.2em;
    text-decoration: none;
}

.footer_link:hover {
    color: rgb(188, 188, 188);
    font-size: 1.2em;
    text-decoration: underline;
}

.miniportfolio {
    margin: 10px 0px;
}

.miniportfolio>img {
    width: calc(25% - 10px);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

@media screen and (max-width: 560px) {
    .miniportfolio>img {
        width: calc(50% - 5px);
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

.miniportfolio>h4 {
    margin: 10px 0px;
}