@import url('https://fonts.googleapis.com/css2?family=Joan&family=Kdam+Thmor+Pro&family=Noto+Sans:wght@100&family=Poppins:ital,wght@0,100;0,200;0,300;1,400&display=swap');

body {
    background-color: rgb(10,10,15);
    color: white;
    font-family: Rubik;
}

div {
    margin-top: 250px;
    text-align: center;
}

img {
    width: 150px;
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 40px;
}

p {
    opacity: 0.7;
}

button {
    padding: 15px;
    border-radius: 15px;
    background-color: rgb(255, 255, 87);
    color: black;
    font-weight: bolder;
    width: 40%;
    transition: filter .1s;
}

button:hover {
    cursor: pointer;
    filter: brightness(1.2);
    background-color: rgb(255, 252, 45);
}

h3 {
    margin-top: 15px;
    opacity: 0.9;
}