body {
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative;
}

header {
    display: flex;
    width: 100%;
    top: 0;
    justify-content: center;
    background-color:darkcyan;
    position: absolute;
    z-index: 1;
}

h1 {
    color: white;
    letter-spacing: 1.5px;
}

main {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: absolute
}

img {
    width: 100%;
    box-shadow: 0 0 15px 1px black;
}

footer {
    display: flex;
    width: 100%;
    bottom: 0;
    justify-content: space-between;
    background-color:darkcyan;
    position: absolute;
}

button {
    padding: 1em;
    font-size: 28px;
    font-weight: 600;
    border: none;
    color: white;
    background-color: transparent;
    letter-spacing: 1.5px;
    cursor: pointer;
}

#website-button {   
    position: absolute;
    left: 0;
    top: 0;
    margin: 2em;
    z-index: 5;

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