@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    font-family:'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    --text: #545454;
    --periwinkle: #6b79b5;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    max-width: 100%;
}

button {
    outline: none;
    background: var(--periwinkle);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--periwinkle);
}

button:hover {
    background: transparent;
    color: var(--periwinkle);
}

.gradient {
    position: relative;
    background: rgb(222,174,216);
    background: linear-gradient(0deg, rgba(222,174,216,1) 0%, rgba(233,139,153,1) 33%, rgba(244,194,169,1) 67%, rgba(255,255,255,1) 90%);
}

/*.gradient:after {
    content: ' ';
    width: 100vw;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
} */

.hero, .flex, .navbar, ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7.5%;
}

.navbar {
    width: 100vw;
    color: #fff;
    background: rgb(222,174,216);
    background: linear-gradient(90deg, rgba(222,174,216,1) 0%, rgba(233,139,153,1) 50%, rgba(244,194,169,1) 100%);
}

.logo {
    width: 7%;
}

.logo img {
    width: 85px;
}

ul {
    list-style: none;
    width: 65%;
    padding: 10px 0 0;
}

.navbar {
    padding: 20px 5%;
}

ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.content {
    width: 62%;
}

.image {
    width: 38%;
}

#hero-button {
    background: rgb(222,174,216);
    background: linear-gradient(90deg, rgba(222,174,216,1) 0%, rgba(233,139,153,1) 50%, rgba(244,194,169,1) 100%);
    border: 1px solid rgb(222,174,216);
    font-size: 20px;
    padding: 15px 35px;
    transition: .2s ease-in-out;
}

#hero-button:hover {
    background: rgb(222,174,216);
    background: linear-gradient(90deg, rgba(222,174,216,1) 0%, rgba(233,139,153,1) 50%, rgba(244,194,169,1) 100%);
    border: 1px solid rgb(222,174,216);
    color: #fff;
    transform: scale(.9);
}

.peri {
    color: var(--periwinkle);
}

.sect2 {
    position: relative;
}

.peeking {
    height: 350px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.flex {
    padding: 0 7.5%;
}

.trio {
    text-align: center;
    border-radius: 40px;
    background: rgba(255, 255, 255, .85);
    border: .5px solid rgb(222,174,216);
    padding: 20px;
    width: 30%;
    z-index: 1;
}

.bamf {
    padding-bottom: 30px;
    display: block;
    margin: auto;
}

footer {
    background: var(--periwinkle);
    color: #fff;
    text-align: center;
    padding: 30px;
}

.socials {
    text-align: center;
}

.socials img {
    width: 40px;
    height: 40px;
}

.socials div {
    height: 40px;
    display: inline-block;
    padding: 3px; 
}

@media screen and (min-width: 3000px) {
    html, body, p {
        font-size: 30px;
    }
}

@media screen and (min-width: 1800px) {
    html, body, p {
        font-size: 25px;
    }
    .content {
        width: 80%;
    }
    
    .image {
        width: 20%;
    }
}


@media screen and (max-width: 1000px) {
    .logo {
        width: 10%;
    }
}

@media screen and (max-width: 750px) {
    .content, .image, .trio {
        width: 100%;
    }

    .logo {
        width: 25%;
    }
    
    .logo img {
        padding-top: 27px;
    }
}