*{
    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;

}

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: 0;
}

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

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


}

.title{
    text-align: center;
}

.row1{
    align-items: center;
    justify-items: center;
    margin-top: 60px;
    margin-left: 100px;
    margin-right:100px;
    text-align: center;
}

.hover{
    display: none;
}

.row1:hover .trigger{
    display: none;
}

.row1:hover .hover{
    display: block;
}

.row2{
    margin-top: 60px;
    text-align: center;
}

a{
    text-decoration: underline #ec008c;
}

/* 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;
    }

    .trigger{
        display: none;
    }

    .hover{
        display: block;
    }

    .row1{
        margin-top: 20px;
        margin-left: 40px;
        margin-right: 40px;
    }

    
    
}

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

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

    .row2{
        margin-left: 40px;
        margin-right: 40px;
    }

   
   
}

@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;
       }

       img{
        max-width: 115%; 
       }

       .pmo{
        max-width: 100%;
       }

       .row2{
        margin-left: 20px;
        margin-right: 20px;
    }
 }