*{
    box-sizing: border-box;
}

img{
    max-width: 100%;
}

body{
    margin: 0 auto;
    background-color: #ddc0dc;
}

h1{
    font-family: "kit-rounded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #a8228e;
    font-size: 48pt;
    margin-bottom: 0;
}

h2{
    font-family: "kit-rounded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #a8228e;
    font-size: 24pt;
}

h2.pink{
    font-family: "kit-rounded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ec008c;
    font-size: 24pt;
}

h3{
    font-family: "kit-rounded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #a8228e;
    font-size: 18pt;
    margin: 0;
}

h4{
    font-family: "kit-rounded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #a8228e;
    font-size: 24pt;
    margin-bottom: 0;
}


.top{
    height: 10vh;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-left: 30px;
}

.container{
    align-items: center;
    justify-items: center;
    text-align: center;

}

.title{
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.row1{
    align-items: center;
    justify-items: center;
   padding-top: 30px;
}

.row2{
    align-items: center;
    justify-items: center;
    padding: 40px;
}

.row3{
    align-items: center;
    justify-items: center;
    padding: 40px;

}


.row4{
    align-items: center;
    justify-items: center;
    padding: 60px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.row5{
    align-items: center;
    justify-items: center;
    padding: 60px;
}
.bottom{
    height: 30vh;
}

.stickycorner{
    position: sticky;
    bottom: 20px;
    left: 420px;
    padding-left: 20px;
}


#myBtn{
    font-family: "kit-rounded", sans-serif;
    font-size: 14pt;
    font-weight: 700;
    color: #ddc0dc;
    padding-top: 10px;
    border-radius: 4px;
    background-color: #ec008c;
    
}

#myBtn:hover {
    background-color: #a8228e; /* Add a dark-grey background on hover */
  }

.mobile{
    display: none;
}

/* max-width = desktop first design */
/* min-width = desktop first design */

/*tablet styles*/
@media screen and (max-width:900px){
    h1{
        font-size: 26pt;
    }

    h2{
        font-size: 21pt;
    }

    h3{
        font-size: 18pt;
    }

    h4{
        font-size: 21pt;
    }

    .top{
        height: 22vh;
    }

    .container{
        text-align: center;
        margin: 10px;
    }

    a{
        text-decoration: underline #ec008c;
    }

    .mobile{
        display: block;
    }

    .me, .postcards{
        display: none;
    }
    
}

  /*phone styles*/
@media screen and (max-width: 750px){
    h1{
        font-size: 26pt;
    }

    h2{
        font-size: 21pt;
    }
    .top{
        height: 20vh;
        padding-top: 10px;
    } 


   
   
}

@media screen and (max-width: 600px){
    .row1{
        margin-top: 40px;
    }
   
   
}

@media screen and (max-width: 450px){
    h1{
     font-size: 20pt;
    }

       h2{
           font-size: 18pt;
       }
   
       h3{
           font-size: 16pt;
       }
   
       h4{
           font-size: 18pt;
       }
    
    .me{
        max-width: 300px;
    }

    .postcards{
        max-width: 400px;
    }

    #myBtn{
        font-family: "kit-rounded", sans-serif;
        font-size: 10pt;
        padding-top: 5px;  
    }
    }
 