body {
    margin: 0;
    padding: 0;
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div {
    width: 80%;
    display: flex;
    justify-content: center;
}

button {
    border: 2px solid;
    padding: .5em 2em;
    border-radius: .5em;
    box-shadow: 0 0 10px 1.5px ;
    font-size: 1.2rem;
    color: black;
    background-color: transparent;
    cursor: pointer;
    transition: border-radius .5s;
}

button:hover {
    border-radius: 1em;
    transition: border-radius .5s transparent;
}

#website-button {   
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 1em;    
    width: 20%;

    a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        background-color: #0d6efd;
        border-radius: 5px;
        font-weight: bold;
        padding: 0.3em 1.5em;
    }
}