body {
    font-family: 'Inter', sans-serif;
    background-color: rgb(24, 24, 24);
}

h1 {
    font-size: 40px;
    font-weight: 700;
    background: -webkit-linear-gradient(rgb(0, 60, 255), #e134ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.centered a {
    background-color: rgb(31, 31, 31);
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    
}

.email {
    transition-duration: 150ms;
}

.email:hover {
    transform: scale(1.1);
    transition-duration: 150ms;
}

.email:active {
    transform: scale(0.9);
    transition-duration: 150ms;
}