body{
    background-color: #242850;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    width: 100%;
}
img{
    align-self: center;
    margin: auto;
    border-radius: 15px;
    height: auto;
    width: 33%;
    margin-top: 15px;
}
h1{
    color: whitesmoke;
    text-decoration: underline;
    font-size: 3vw;
    padding-top: 30px;
}
h2{
    color: whitesmoke;
    font-size: 1.5vw;
}
a{
    border-color: black;
    border-radius: 30px;
    border-style: solid;
    margin: auto;
    width: 60%;
    height: auto;
    text-align: center;
    font-size: 2vw;
    padding : 10px;
    background-color: white;
    box-shadow: 5px 5px 5px slategray;
    color : #242850;
    transition: all 1500ms;
    transform: scale(1);
}
a:hover{
    transition: all 500ms;
    transform: scale(1.2);
    box-shadow: 5px 5px 5px black;
    background-color: #242850;
    border-color: white;
    color: white;
}
p{
    position: absolute;
    bottom: 0;
    color: whitesmoke;
}
#txtbutt{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: auto;
    height: 40%;
    width : 100%;
    padding-top: 7%;
}