*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    max-width: 1500px;
    margin: 0 auto;
    border:  4px inset rgb(0, 0, 0);
    padding: 20px;
}

body {
    background-color: rgb(238, 168, 168);
    display: flex;
    flex-direction: column;
}

h1 {
    color: rgb(104, 20, 240);
    font-family: sans-serif;
}

form {
    background-color: rgb(235, 112, 112);
    padding: 10px;
    border-radius: 5px;
}

fieldset{
    border: 4px outset rgb(245, 4, 4);
}