body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-color: rgb(0, 33, 71);

}

.backgroundimage {
    background-image: url("PortfolioBKGD.png"); /*Evil and intimidating rat*/
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: 90% 300%;
    animation: 2.5s ease-out bkgd-ease;

}

@keyframes bkgd-ease {
    0% {background-position: 90% 700%;}
    55% {background-position: 90% 290%;}
    100% {background-position: 90% 300%;}
}

.backgroundgradient {
    height: 100vh;
    width: 100vw;
    background-image: radial-gradient(circle at 40% 90%, rgba(0, 33, 71, 1) 20%, rgba(0, 33, 71, 0) 50%);

}

.navbar {
    background-color: rgb(0, 24, 41);
    max-height: 7.5%;
    top: 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 1% 0% 1% 5%;
    display: flex;

}

.navbar li {
    padding-right: 6.5%;
    font-weight: bold;
}

.navbar a {
    text-decoration: none;
    color: rgb(231, 229, 223);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 145%;
    transition: 0.4s;

}

.navbar a:hover {
    color: rgb(233, 74, 53);

}

img {
    align-items: right;
    width: 35px;
    height: 35px;
}

.introcontainer {
    width: 55%;
    height: auto;
    padding-left: 5%;
    padding-top: 10%;
}

.introparagraph {
    text-decoration: none;
    color: rgb(231, 229, 223);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 200%;

}

.hl {
    color: rgb(233, 74, 53);
}

.current {
    width:50%;
    text-decoration: none;
    color: rgb(231, 229, 223);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 145%;
    padding-top: 2.5%;
    padding-left: 5%;

}

.footer {
    position: fixed;
    width: 100%;
    height: 15%;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(0, 33, 71, 1), rgba(0, 33, 71, 0));
}

.main {
    padding: 2.5% 5% 0% 5%;
}