* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

a {
   text-decoration: none;
   color: #000;
   font-family: 'Playfair Display', serif;
}

.container {
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
}

a.button-wrap {
   width: 560px;
   height: 560px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   overflow: hidden;
   transition: transform .3s cubic-bezier(.24,.45,.32,1);
   will-change: transform;
   position: relative;
}

a.button-wrap:hover .button {
   background-color: white;
   color: #0048FF;
}

.button {
   width: 240px;
   height: 240px;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #0048FF;
   border: 1px solid #0048FF;
   border-radius: 50%;
   font-size: 20px;
   line-height: 1;
   color: white;
   transition: all .3s cubic-bezier(.24,.45,.32,1);
}
