body {
    background-color: black;
}

.CenterButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.centerBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: blue;
    margin: auto;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    max-width: 256px;
    max-height: 256px;
    border: midnightblue 3px solid;
    border-radius: 25px;
}

.fancyButton {
    color: white;
    background-color: transparent;
    padding: 15px 30px;
    border: white 2px solid;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    margin: 10px;
    position: relative;
    text-decoration: none;
}