@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jost";
    background-image: url(webbg.png);
    background-repeat:no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size:1920px 1080px;
    background-color: beige;
    max-height: 1000px;
}

.container{
    width: 400px;
    margin: 0 auto;
    margin-top: 300px;
    font-size: 30px;
    text-align: center;
}

.viewmenu{
    font-size: 20px;
    padding: 10px;
    border: none;
    margin-top: 10px;
    color: black;
    background-color: beige;
    border-radius: 10px;
    cursor: pointer;
}

.action_btn1{
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale .2 ease;
}

.action_btn1:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn1:active{
    scale: 0.95;
}

.social-icons{
    margin-top: 30px;
}
