@import "https://fonts.googleapis.com/css2?family=Roboto&display=swap";
body {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    text-align: center;
/*  background-image: url("../../images/background.jpg"); */
	background-color: #7300ff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}
a {
    text-decoration: none;
    color: #fff;
}
h1 {
    text-shadow: 2px 2px 8px #000000;
}
h2 {
    margin-bottom: 40px;
	text-shadow: 2px 2px 8px #000000;
}
h3 {
    margin-top: 0;
    opacity: 70%;
    font-weight: 10;
}
.button-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.button {
    position: relative;
    cursor: pointer;
    font-size: 25px;
    transition: all 300ms;
    background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.button i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.button img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 30px;
}
.button a {
    padding: 15px;
    display: block;
}
.button:hover {
    background: rgba(0, 0, 0, 0.8);
}
i {
    float: left;
}
@media (max-width: 500px) {
    .social {
        margin: 10px 30px;
    }
    .social:hover {
        margin: 10px 29px;
    }
    body {
        background-size: cover;
    }
} /*# sourceMappingURL=style.css.map */
