css
/*Section1*/
.hero-section{
display: flex;
justify-content: center;
position: absolute;
top: 0px;
left: 0px;
width:100%;
height: 930px;
background-image: var(--heroimg) !important;
background-position: center center;
background-size: cover;
z-index: 1;
}
.hero-container{
display: flex;
justify-content: flex-end;
align-items: flex-end;
width: 810px;
height: 100%;
align-items: flex-end;
flex-direction: column;
padding: 0 35px 6px 0;
}
.social-logos{
display: flex;
width: 55%;
height: 100px;
align-items: center;
justify-content: space-evenly;
margin: 8px -16px;
}
.social-logos img{
opacity: 0.7;
transition: ease 0.2s;
}
.social-logos img:hover{
opacity: 1;
transition: ease 0.2s;
}
.duplicate-links{
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 25px 50px 1fr auto;
font-size: 40px;
font-family: noto serif;
font-weight: 600;
justify-content: center;
mix-blend-mode: difference;
column-gap: 5%;
}
css
/*Section1*/
.hero-section{
display: flex;
justify-content: center;
position: absolute;
top: 0px;
left: 0px;
width:100%;
height: 930px;
background-image: var(--heroimg) !important;
background-position: center center;
background-size: cover;
z-index: 1;
}
.hero-container{
display: flex;
justify-content: flex-end;
align-items: flex-end;
width: 810px;
height: 100%;
align-items: flex-end;
flex-direction: column;
padding: 0 35px 6px 0;
}
.social-logos{
display: flex;
width: 55%;
height: 100px;
align-items: center;
justify-content: space-evenly;
margin: 8px -16px;
}
.social-logos img{
opacity: 0.7;
transition: ease 0.2s;
}
.social-logos img:hover{
opacity: 1;
transition: ease 0.2s;
}
.duplicate-links{
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 25px 50px 1fr auto;
font-size: 40px;
font-family: noto serif;
font-weight: 600;
justify-content: center;
mix-blend-mode: difference;
column-gap: 5%;
}