* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: currentColor;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF9F5;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.box {
    width: 200px;
    height: 100px;
    background: #daa859;
    color: white;
    text-align: center;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease-in;
}


.boxG {
    width: 200px;
    height: 100px;
    background: #1F3528;
    color: white;
    text-align: center;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease-in;

}

.boxB {
    width: 200px;
    height: 100px;
    background: #2e2d49;
    color: white;
    text-align: center;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease-in;
}

.boxG:hover {
    box-shadow: 0 8px 24px #1d3326a1;
}
.boxB:hover {
    box-shadow: 0 8px 24px #1211279f;
}
