* {
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    font-family: "Lexend", serif;
}

html {
    overflow-x: hidden;
}

body {
    margin-top:80px;
    background: #efefef;
}

.button {
    background: #f7e718;
    color: #000000;
    padding: 15px;
    text-decoration: none;
    border-radius: 10px;
    filter: drop-shadow(2px 4px 6px #33333310);
    cursor: pointer;
    transition: 0.25s scale;
}

.button:hover {
    scale: 1.05;
}