@font-face {
    font-family: 'Minecraftia';
    font-style: normal;
    font-weight: 400;
    src: local('Minecraftia'), url('Minecraftia.woff') format('woff');
}


* {
    font-family: 'Minecraftia';
}

h1, p, h2, h3, a {
    color: white;
}

body {
    background-color: #ffbaf6;
}

.thisisaclass {
    align-items: center;
    justify-content: center;
    display: flex;
}

.thisisaclasstoo {
    align-items: center;
    justify-content: center;
    display: flex;
}

.thisisaclasstoo img {
    height: 250px;
    width: 250px;
    transition: width 2s, height 2s;
}

.thisisaclasstoo img:hover {
    height: 270px;
    width: 270px;
}

.realbuttons {
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-left: 2px;
    display: flex;
    transition: font-size 2s;
}

.realbuttons:hover {
    font-size: 18px;
}

.realbuttons p {
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#basicallyagame {
    transition: font-size 2s;
}