@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
header {
    width: 100%;
    background: #c11b1c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
header span {
    padding: 3px 0;
    width: 100%;
    text-align: center;
}
header span:nth-child(2) {
    background: #7a0809;
    padding: 3px 0;
}
header a {
    font-size: 25px;
    text-decoration: none;
    color: #f3f3f3;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container main {
    width: 800px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.color {
    width: 25%;
    height: 120px;
    display: flex;
    cursor: pointer;
    position: relative;
}
.color:after {
    content: "copy";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    display: none;
}
.color:hover:after {
    display: flex;
}
.color div {
    display: none;
}
.copied-aft:after {
    content: "copied";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    display: none;
}
#generate {
    font-size: 25px;
    margin-left: 5px;
    padding: 2px 15px;
    cursor: pointer;
    background: linear-gradient(120deg, red, blue);
    color: #fff;
    border: none;
    outline: none;
    margin-top: 10px;
}
.text {
    width: 100%;
    padding: 10px;
}
.text h1 {
    font-size: 26px;
}
.text h2 {
    font-size: 24px;
}
.text p {
    font-size: 19px;
    letter-spacing: 0.6px;
    line-height: 30px;
}
.text img {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
}

.tools {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
}

.tools a {
	font-size: 21px;
	padding: 4px 20px;
	margin: 3px;
	text-decoration: none;
	letter-spacing: .6px;
	background: #8e44ad;
	color: #fff;
}

.tools a:hover{
	background: #000;
}

.shr-it {
    display: flex;
    justify-content: center;
    font-size: 18px;
    align-items: center;
    letter-spacing: 0.5px;
    color: #fff;
}
.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block;
}
.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    margin: 1px;
}
.resp-sharing-button {
    transition: 25ms ease-out;
    padding: 0px 7px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.resp-sharing-button__icon svg {
    width: 19px;
    height: 19px;
    margin-right: 0.4rem;
    vertical-align: top;
}
.resp-sharing-button--small svg {
    margin: 0;
    vertical-align: middle;
} /* Non solid icons get a stroke */
.resp-sharing-button__icon {
    stroke: #fff;
    fill: none;
} /* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none;
}
.resp-sharing-button--twitter {
    background-color: #55acee;
}
.resp-sharing-button--twitter:hover {
    background-color: #2795e9;
}
.resp-sharing-button--facebook {
    background-color: #3b5998;
}
.resp-sharing-button--facebook:hover {
    background-color: #2d4373;
}
.resp-sharing-button--email {
    background-color: #777;
}
.resp-sharing-button--email:hover {
    background-color: #5e5e5e;
}
.resp-sharing-button--whatsapp {
    background-color: #25d366;
}
.resp-sharing-button--whatsapp:hover {
    background-color: #1da851;
}
.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}
.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}
.resp-sharing-button--twitter {
    background-color: #55acee;
    border-color: #55acee;
}
.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}
.resp-sharing-button--email {
    background-color: #777777;
    border-color: #777777;
}
.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}
.resp-sharing-button--whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}
.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
    background-color: #1da851;
    border-color: #1da851;
}
