html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    background-color: rgba(246, 247, 248, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf');
}

a {
    text-decoration: none;
    font-family: 'Inter';
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 300;
    font-size: 16px;
    padding: 4px;
}

img {
    transform: scale(1);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 334px;
    width: auto;
}

img:hover {
    transform: scale(1.5);
}