@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&display=swap');
p {
    font-size: 25px;
    color: rgb(0, 0, 0);
}
body {
    background-image: linear-gradient(to right, #008F8C, #0CABA8);
    font-family: "Big Soulders",Franklin Gothic Medium, cursive, sans-serif;
}

main {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: 800px;
    margin: auto;
    box-shadow: 5px 5px 15px #023535;
    text-align: justify;
}
a {
    color: #023535;
}
h1 {
    text-decoration: underline;
}
button {
    background-color: hsl(180, 93%, 11%);
    color: white;
    width: 300px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 5px 5px 15px #011919;
  }
  
    button:hover {
    background-color: #000a0a;
  }
