You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.3 KiB
SCSS

2 years ago
#banner-container-home {
display: flex;
width: 100%;
margin: 0.2rem auto;
2 years ago
align-items: center;
justify-content: center;
}
.image-container-home {
position: relative;
width: 22%;
overflow: hidden;
text-align: center;
2 years ago
}
#home-banner-text {
width: 78%;
margin-bottom: 30px;
font-size: 1.875rem;
line-height: 3rem;
color: var(--primary-color);
}
.home-banner-header {
margin-bottom: 1rem;
font-size: 2.8rem;
font-weight: 550;
}
#banner-home-subtitle {
width: 95%;
2 years ago
padding-right: 5%;
font-weight: 250;
line-height: 1.75rem;
color: var(--text-color);
2 years ago
}
#banner-home-subtitle p {
font-family: var(--sans-serif-font);
font-size: 1rem;
}
#banner-home-subtitle a {
font-weight: 400;
}
2 years ago
.banner-home-img {
aspect-ratio: 1 / 1;
max-width: 15rem;
max-height: 15rem;
width: 100%;
height: auto;
2 years ago
border: none;
}
@media only screen and (max-width: 600px) {
#banner-container-home {
display: block;
margin: 0em auto;
margin-bottom: 2rem;
}
.home-banner-header {
font-size: 2.2rem;
margin-bottom: 0;
2 years ago
}
.banner-home-img {
max-width: 12rem;
max-height: 12rem;
}
2 years ago
.image-container-home {
width: 95%;
}
#home-banner-text {
width: 95%;
}
}