*{
    margin: 0;
}

body, html{
    height: 100vh;
    position: relative;
}
main{
    background-image: url(../images/585496430_10230839525067771_1984717525649871985_n.jpg);
    background-repeat: no-repeat;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
h1{
    background-color: rgba(147, 235, 135,.8);
    padding: 20px;
    border: solid 4px white;
    font-size: 5rem;
    color: aliceblue;
    text-shadow: black 2px 2px 25px;
}
p{
background-color: rgba(49, 142, 85, .8);
padding: 20px;
border:solid white 4px;
margin: 20px 20px;
color: aliceblue;
font-size: 1.5rem;
}
button{
    width: 250px;
    height: 250px;
    background-image:url(../images/Strawberry-ice-cream-Clipart-WM.webp) ;
    background-size: cover;
    font-size: 2rem;
    transition: box-shadow 1s;
}
button:hover{
    box-shadow: 0px 0px 30px white;
    transition: box-shadow 1s;
}
h3, a{
    text-decoration: none;
    color: black;
}