* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.main > h1 {
   text-align: center;
   font-size: 3rem;
}

#container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 350px;
}

.box {
    border: 1px solid black;
}

#btn {
    padding: 0.6em 1.2em;
    font-size: 1rem;
    background-color: rgb(6, 78, 194);
    color: rgb(250, 241, 241);
    border-radius: 8px;
    border: none;
    box-shadow: 2px 4px 10px rgb(168, 198, 245);
    cursor: pointer;
    width: fit-content;
}

.text{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: auto auto;
}