html{
    background:#161616;
    font-family:'Open Sans';
    color:white;
}
*,*:before,*:after{
    box-sizing: border-box;
}
html,body{
    margin:0;
}
body{
    max-width:450px;
}
h1{
    font-size:1.25rem;
    font-family:'Cabin';
    font-weight:600;
}
h2{
    font-family:'Cabin';
    font-weight: 400px;
    font-size:1.15rem;
    line-height:1rem;
}
h3{
    font-family:'Cabin';
    font-weight:700;
    font-size:1rem;
    line-height:0;
}
h4{
    font-weight:400;
    font-size:.9rem;
    line-height:1.25rem;
}
h5{
    font-weight:300;
    font-size:.8rem;
    line-height:1.1rem;
}
h6{
    font-size:.6rem;
    font-family:'Cabin';
    font-weight:600;
    margin:.4rem;
}
p{
    font-size:.6rem;
    font-weight:300;
}

.topHeroContainer{
    width:100%;
    display:flex;
    flex-direction: row;
    gap:0;
}
.darkBlueText{
    color:#177278;
}
.imgContainer{
    width:100%;
    background:url(/assets/eryn.png);
    height:13rem;
    background-repeat: no-repeat;
    background-size:cover;
    border-radius: 1rem 1rem 1rem;
    z-index:99;
}
.rightContainer{
    width:100%;
    border-radius: 0 1rem 1rem 0;
    padding:.75rem;
    padding-left:2rem;
    padding-top:2.5rem;
    background:rgba(0,0,0,0.4);
    margin-left:-1rem;

    border:1px solid rgba(23, 114, 120,0.7);
}
.heroContainer{
    background: linear-gradient(145deg, #177278 -60%, rgba(22, 22, 22, 1) 105%);
    padding:1.5rem;
}
.darkBackground{
    background:rgba(0,0,0,0.5);
    padding:1.5rem;
    border-radius:1rem;
}
.darkBackground h5{
    margin:0;
}
.upperCase{
    text-transform: uppercase;
    letter-spacing:0.05rem;
}
.marginTop{
    margin-top:2rem;
}
.marginTopSmall{
    margin-top:1rem;
}
.marginTopLarge{
    margin-top:3rem;
}
.socialsContainer img{
    height:20px;
}
.collectionContainer{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
.collectionsImg{
    background:url(/assets/collectionsImg.png);
    width:100%;
    height:5.5rem;
    background-repeat:no-repeat;
    background-size:cover;
    border-radius:.5rem;
}
.inputBox{
    width:100%;
    background: linear-gradient(153.93deg, rgba(23, 114, 120, 0.2) -42.33%, rgba(22, 22, 22, 0) 113.52%), rgba(23, 114, 120, 0.2);
    border: 1px solid #102B2D;
    border-radius: 4px;
    padding:.25rem;
}
.inputBox:hover{
    background:rgba(23, 114, 120,0.5);
    border:1px solid rgba(0,0,0,0.7)
}
.inputBox:focus{
    outline:none;
    border:1px solid white;
}
.mailingListContainer h4{
    margin:0;
    margin-bottom:1rem;
}

.mainButton{
    background: linear-gradient(153.93deg, #177278 -42.33%, rgba(22, 22, 22, 0) 113.52%), rgba(23, 114, 120, 0.5);
    border: 1px solid #155054;
    border-radius: 4px;
    margin-top:1.5rem;
    display:flex;
    justify-content: center;
    align-items:center;
    padding:.8rem;
    width:100%;
    gap:.75rem;
}
.mainButton:hover{
    background:#177278;
    cursor:pointer;
}
.mainButton h4{
    margin:0;
}
.white{
    color:white;
}.worksContainer{
    padding:1.5rem;
}
.bookContainer{
    display:flex;
    gap:1rem;
}
.rightCol,.leftCol{
    width:100%;
    text-align:left;
}
.rightCol h4,.leftCol h4, .reviewColored{
    margin:.25rem;
    margin-left:0;
    padding:0;
}
.swanColor{
    color:#0CF0FF;
}
.swan{
    background:url(/assets/swan.png);
    border-radius:1rem;
    background-size:cover;
    background-position: center;
}
.swanButton{
    background: linear-gradient(276.18deg, #FFFFFF -57.73%, #0CF0FF 136.5%);
}
.loveColor{
    color:#CD5848
}
.love{
    background:url(/assets/love.png);
    border-radius:1rem;
    background-size:cover;
    background-position: center;
}
.loveButton{
    background: linear-gradient(274.7deg, #FFFFFF -244.88%, #CD5848 120.27%);
}
.sunset{
    background:url(/assets/sunset.png);
    border-radius:1rem;
    background-size:cover;
    background-position: center;
}
.sunsetColor{
    color:#F9C25F
}
.sunsetButton{
    background: linear-gradient(275.49deg, #FFFFFF -83.93%, #F9C25F 106.66%);
}
.buyButton{
    border-radius: 4px;
    margin-top:1rem;
    display:flex;
    justify-content: center;
    align-items:center;
    padding:.5rem;
    width:100%;
    gap:0rem;
    flex-direction: row;
    border:none;
}
.buyButton:hover{
    background:white;
    cursor:pointer;
}
a{
    text-decoration: none;
    color:black;
}
.cartSVG{
    height:16px;
}
.dropShadow{
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.25);
}
.footer{
    padding: 2rem .75rem;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background:#161616;
    color:white;
}
.footer a h4{
    color:white;
    transition:0.3s ease;
    margin:0;
}
.footer a h4:hover{
    color:#0CF0FF;
}
@media screen and (min-width:450px){
    body:before{
        position:relative;
    }
    body{
        margin:2rem;
        position:absolute;
        left:50%;
        transform: translateX(-50%);
        border:2px solid white;
        border-radius:1.5rem;
        background:#161616;
    }
    html{
        background:url(/assets/bodyBackground.jpg);
        background-repeat:no-repeat;
        background-size:cover;
    }
    .heroContainer{
        border-radius: 1.5rem 1.5rem 0 0
    }
    .collectionsImg{
        background:url(/assets/collectionsImg.png);
        width:100%;
        height:6.2rem;
        background-repeat:no-repeat;
        background-size:cover;
        border-radius:.5rem;
    }
}