Page 269 - MDP2022-3
P. 269

cursor:  pointer;
                   }
                   p{
                         padding:  10px;
                         border-radius: 7px  7px  7px 7px;
                   }
                   @media all  and (max-width:  768px){
                         width:  50vw;
                         margin:  5vw;
                         font-size:  200%;
                   }
            `;
            const  HomeButton  =  styled.h1`
                   position:  absolute;
                   top: 1%;
                   left:  50%;
                   transform: translate(-50%,0);
                   font-size:  7vh;
                   border-radius:  5px  5px 5px  5px;
                   padding:  5px;
                   width:  fit-content;
                   height:  fit-content;
                   color:  black;
                   path:hover{
                         color:  blue;
                         cursor:  pointer;
                   }
                   @media all  and (max-width:  768px){
                         position:  relative;
                         align-self:  flex-end;
                         right:  40%;
                         font-size:  7vh;
                         width:  fit-content;
                         height: fit-content;
                   }
            `;
            export  default  Page1;
   264   265   266   267   268   269   270   271   272   273   274