*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-image: url("./bg.png");
    background-size: contain;
}

/* Header */
header{
    backdrop-filter: blur(5px);
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px 2px black;
    padding: 0 10px;
}
header h1{
    margin-left: 10px;
    font-size: x-large;
}

/* Main */
main{
    height: 85vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.container{
    height: 50%;
    width: 70%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
a{
    text-decoration: none;
    color: black;
    height: 20%;
    width: 90%;
    border: none;
    border-radius: 50px;
}
#shop_btn{
    border: none;
    backdrop-filter: blur(55px);
    background-color: rgba(225, 78, 208, 0.3);
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.692);
}
#cart_btn{
    border: none;
    backdrop-filter: blur(55px);
    background-color: rgba(49, 203, 28, 0.4);
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.692);
}
button{
    height: 100%;
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: xx-large;
}

/* Footer */
footer{
    height: 5vh;
    width: 100%;
    background-color: yellow;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}