
html {
    background-color: black;
    font-family: Montserrat, sans-serif;
    color: white;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
img {
    width: 100%;
    object-fit: cover;
}


a {
    color: white;
}

.max-width-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    max-height: 1000px;
    padding-bottom: 32px;
}

 .portrait-wrapper{
    width: min(40vh, 405px); 
   
    z-index: -1;
    flex:0 1;
}
.overlay-gradient {
    position: relative;
    bottom: 0;
    height: 200px;
    margin-top: -200px;
    background: linear-gradient(to bottom,  rgba(0, 0, 0, 0), black);
}
.logo {
    max-width: 450px; 
    margin-top: -100px;
    flex:0 1;
    
}
.by {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px;
}
.offers {
    font-size: clamp(1rem, 2vh + 1rem, 3rem);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; 
    padding-block: 32px;
}

.offers-text {
    font-size: inherit;
}
.offer-link {
    text-decoration: none;
    -webkit-text-decoration: none;
}
.icons {
    display: flex;
    gap: 16px;
}
.icon {
    width: clamp(1rem, 3vh + 1rem, 3rem);
    height: clamp(1rem, 3vh + 1rem, 3rem);
}
.website {
    padding:8px; 
}

