*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 100%;
}

body{
background-color: rgb(128, 248, 226);

}

header{

width: 100%;
height: 150px;
background-color: black;
border-bottom: solid 4px rgb(251, 38, 255);
color: white;
}





h1{
    text-align: center;
    font-size: 100px;
    color: rgb(128, 248, 226);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 190px;
}


main{
width: 100%;
height: auto;
}

section{

    width: 100%;
    height: 100vh;
    border-bottom: 5px rgb(254, 31, 213);
}

footer{
    width: 100%;
    height: 150px;
    background-color: black;
    border-top: solid 4px white;
}