* { 
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: white;
    --bg-color1: #DCFFEC;
    --color: #1EA8A4;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    text-align: center;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    color: var(--bg-color);
    display: block;
    width: 100%;
    height: 100%;
}

.front-page-container {
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-logo {
    margin-bottom: 20px;
}

.cart-logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.shoppy-cart {
    color: var(--bg-color);
    font-weight: 500;
    font-family: italic;
    font-size: 40px;
}

@media (max-width: 768px) {
    .shoppy-cart {
        font-size: 38px;
    }
    
    .cart-logo img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .shoppy-cart {
        font-size: 36px;
    }
    
    .cart-logo img {
        max-width: 120px;
    }
}

@media (max-width: 360px) {
    .shoppy-cart {
        font-size: 32px;
    }
    
    .cart-logo img {
        max-width: 100px;
    }
}

@media (max-width: 320px) {
    .shoppy-cart {
        font-size: 28px;
    }
    
    .cart-logo img {
        max-width: 90px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .front-page-container {
        flex-direction: row;
        gap: 30px;
    }
    
    .cart-logo {
        margin-bottom: 0;
    }
    
    .cart-logo img {
        max-width: 80px;
    }
    
    .shoppy-cart {
        font-size: 28px;
    }
}