body, html {
    height: 100vh;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: url(/assets/pexels-artempodrez.jpg);
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/mult120/assets/hero_mult.png");
    height: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.icon {
    display:flex;
    justify-content: flex-start;
    padding: 20px;
    width: 2%;
}

hr.rounded {
    border:none;
    border-top: 8px solid #000000;
    margin-top: auto;
}

/* main links leading out of the site - icons */
.icon_link {
    float: left;
    min-width: 20px;
}

/* border around the link list */
.buttons li {
    margin-bottom: 45px;
    list-style: none;
    text-align: center;
    background-color: aliceblue;
    box-shadow: 8px 8px 0 #000;
    padding: 1.5em;
    border-radius: 30px;
    margin: 100px;
}

/* text within the link list */
a {
    text-decoration: none;
    color:#4b0375;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* hover, active, visited for the buttons and the text */
.buttons a:hover {
    color: rgb(2, 103, 185);
}

.buttons a:active {
    color: rgb(3, 47, 54);
}

.buttons a:visited {
    color: #be13e9;
}
/* credit within the footer */
.footer_cred {
    color: rgb(0, 0, 0);
}
/* parent-child shenanigans in css */
li:nth-child(odd) {
    background: #efdffa;
}

li:nth-child(even) {
    background-color: #c6d4ff;
}

li:first-child {
    font-weight: 1000;
}

li:last-child {
    font-weight: 600;
}

li:nth-last-of-type(1n) {
    border: 2px solid rgb(0, 0, 0);
}

.footer_text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    padding: 10px;
    text-align: center;
    color: rgb(0, 0, 0);
}