@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Mea+Culpa&display=swap');

/* Index and Navbar */

body {
    margin: 0;  
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

/* Navigation Menu and Responsiveness */

.navigation-menu {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .navigation-menu {
        display: block
    }
    .menu-hide {
        display: none
    }
}

/* Nav */

.navbar ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left
}

.navbar li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.navbar li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Icons */

.icons ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.icons li {
    float: left
}

.icons li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.icons li a:hover {
    background-color: rgb(181, 181, 181);
}

main {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.e-text {
    max-width: 80%;
}

main h1, main h3 {
    font-family: "Cardo", sans-serif;
}

main img {
    max-width: 50%;
}

.img2 {
    display: none;
}

@media only screen and (max-width: 950px) {
    .img2 {display: block;}
    .img1 {display: none;}
    main img {max-width: 100%;}
}

main p, main li {
    font-family: "Cardo", sans-serif;
    font-size: 1.1rem;
}

main ul {
    list-style: none;
    padding: 0px;
}

main li {
    margin: 1rem;
}

.space {
    height: 35px;
}

.button-link img {
    min-width: 2.5rem;
    padding: 2em;
}

.button-link a img:hover {
    border-bottom: solid;
    color: black;
}