body {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
    background-color: darkcyan;
}

header {
    background-color: paleturquoise;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

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

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

footer {
    background-color: paleturquoise;
    position: fixed;
    justify-content: left;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 15px;
    width: 100%;
}