﻿@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: "Poetsen One", sans-serif;
    margin: 0;
    padding: 0;
}


.page-bg {
    width: 100%;
    min-height: 100vh;
    background: url('/_content/Szop.Game.Shared/img/szop_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.btnSave {
    background-color: limegreen;
    color: white;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    background-color: #09CC52;
    border-radius: 20px;
    font-weight: 600;
    color: white;
    text-transform: initial;
    font-size: clamp(1rem, 2.5vw, 2rem);
    border: 4px solid #5af192;
    padding: clamp(4px, 2.5vw, 2rem) clamp(1rem, 2.5vw, 4rem);
    
}

    .btnSave:hover {
        background-color: #5af192;
        border-color: white;
        color:white;
    }
    .btnSave .mud-button-icon-size-large > *:first-child {
        font-size: clamp(2rem, 3.5vw, 4rem);
        color: #16AB4E;
    }
    .btnSave:hover .mud-button-icon-size-large > *:first-child {
        color: #4fdf84;
    }



/*tablet*/

@media only screen and (max-width: 1200px) {
    .btnSave {
        padding: .2rem .8rem;
        font-size: 16px;
    }
}