@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.flex-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-box {
    color: #264653;
    background-color: #f4a261;
    text-align: center;
    padding: 15px;
    transition: ease-in-out 0.25s all;
    width: 450px;
}
.link-box:hover {
    background-color: #e9c46a;
    box-shadow: 15px 15px 0 #e76f51;
}

.link-box * {
    color: inherit;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
}