body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(251, 227, 197);
    text-align: center;
}

h1 {
    font-size: 110px;
    text-align: center;
    color: rgb(104, 73, 1);
}

button {
    padding: 25px 80px;
    border: none;
    border-radius: 20px;
    color: white; 
    background-color: rgb(103, 72, 0);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    text-align: center;
    transition: .45s;
    font-weight: 590;
}

button:hover {
    transform: translateX(-50%) scale(1.2);
}

button:active {
    transform: translateX(-50%) scale(.9);
}

#rizztext {
    text-align: center;
    font-size: 27px;
    margin-bottom: 40px;
    animation: heartbeat 1s infinite;
    color: rgb(253, 41, 41);
    font-weight: 800;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

#github {
    bottom: 15px; 
    right: 15px; 
    position: absolute; 
    color: rgb(129, 91, 1); 
    text-decoration: none; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
    font-weight: bold;
    font-size: 20px;
    transition: .2s;
}

#github:hover {
    scale: 1.15;
}



