body {
    background-image: url("images/background.jpg");
    margin: 64px;
    position: relative;
}
.title {
    background-color: rgb(37, 69, 69);
    margin: 16px 0 0 0;
    padding: 32px 16px 0 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 64px;
    border: solid white;
    border-radius: 16px;
    width: 560px;
    height: 128px;
}
.name {
    margin: 32px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(37, 69, 69);
    text-align: center;
    font-size: 48px; 
}
.linkbutton {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 32px;
    border: solid;
    border-radius: 16px;
    background-color: rgb(37, 69, 69);
    color: white;
    font-size: 48px;
    font-weight: bold;
    width: 600px;
    height: 128px;
}
.container {
    margin: 16px;
    display: flex;
    justify-content: center;
}
.linkbutton:hover {
    background-color: rgb(50, 93, 93);
}
img {
    border: rgb(50, 93, 93) solid;
    max-width: 75%;
    height: inherit;
}