body {
    margin: 0;
    padding: 0;
    background-color: lightslategray;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 20px;
    height: 75vh;
    gap: 20px;
    flex-direction: column;
}

.box {
    background-color: tomato;
    padding: 15px;
    border-radius: 10px;
    width: 45%;
    box-sizing: border-box;
}

.box2 {
    background-color: tomato;
    padding: 15px;
    border-radius: 10px;
    width: 45%;
    box-sizing: border-box;
}

footer {
    background-color: tomato;
    padding: 20px;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}