@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-attachment: fixed;
    background-image: url("https://edeninnovations.com/wp-content/uploads/2016/06/eden-home-BG-3.1.jpg");
    background-size: cover;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

section {
    width: 80%;
    margin-left: 10%;
    margin-top: 5%;
}

section h1 {
    margin: 0;
    padding: 0;
}

section article {
    padding: 5%;
    border-radius: 15px;
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    margin-bottom: 2%;
    transition: .2s;
}

.dcard div img {
    filter: grayscale() contrast(1.5);
    border-radius: 50%;
    width: 10%;
}

.dcard:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
}

a {
    display: block;
    padding: 0.8vw;
    position: fixed;
    top: 1vh;
    right: 1vw;
    background-color: black;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 2;
    overflow: hidden;
    transition: .5s cubic-bezier(.57, .18, .28, 1.33);
    outline: 1px solid transparent;
}

a:hover {
    transform: scale(1.2);
}