@font-face {
|
|
font-family: 'Lato', sans-serif;
|
|
src: url('fonts/Lato-Thin.ttf') format('truetype');
|
|
font-style: normal;
|
|
font-weight: 100;
|
|
}
|
|
|
|
.content {
|
|
height: 120vh !important;
|
|
width: 100vw;
|
|
}
|
|
|
|
.content .container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: repeat(8, 1fr);
|
|
margin-top: .2rem;
|
|
font-family: 'Lato', sans-serif;;
|
|
}
|
|
|
|
.container img {
|
|
height: 100%;
|
|
z-index: 0;
|
|
max-width: 100vw;
|
|
grid-column: 1/3;
|
|
grid-row: 1/9;
|
|
justify-self: center;
|
|
}
|
|
|
|
.link {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(2, 1fr)
|
|
}
|
|
|
|
.link button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border-radius: 50%;
|
|
border: .1rem solid hsl(300, 100%, 50%);
|
|
background-color: hsl(300, 100%, 50%);
|
|
}
|
|
|
|
.link a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1.25rem;
|
|
transition: all .5s ease-in-out;
|
|
}
|
|
|
|
.link button:active {
|
|
box-shadow: 0px 0px 10px hsl(300, 100%, 30%);
|
|
}
|
|
|
|
.link .sub_container {
|
|
display: none;
|
|
}
|
|
|
|
.link .sub_container p {
|
|
font-size: .65rem;
|
|
text-align: center;
|
|
color: #333;
|
|
line-height: 2.25vh;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
border-radius: .03rem;
|
|
}
|
|
|
|
#hemp {
|
|
grid-column: 1/3;
|
|
grid-row: 1;
|
|
z-index: 2;
|
|
}
|
|
|
|
#hemp button {
|
|
grid-column: 2;
|
|
grid-row: 2;
|
|
justify-self: start;
|
|
align-self: end;
|
|
margin-left: 2.4rem;
|
|
margin-bottom: .2rem;
|
|
}
|
|
|
|
#hemp .sub_container {
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.content {
|
|
height: 250vh !important;
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
#hemp {
|
|
z-index: 0;
|
|
}
|
|
|
|
}
|