@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html {
    background-image: url('background.jpg');
    background-size: cover;
}

body {
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    margin: 3em;
    background-color: rgba(0, 0, 0, 0.365);
    padding: 2em;
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(20px);
}

button {
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    padding: 1em;
    cursor: pointer;
    border: none;
    background-color: crimson;
    color: white;
    border-radius: 10px;
    transition: 0.5s all;
}

input {
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    padding: 1em;
    border: none;
    background-color: white;
    color: crimson;
    border-radius: 10px;
    transition: 0.5s all;
}

button:hover {
    
    color: white;
    background-color: crimson;
    outline: 5px solid rgba(220, 20, 60, 0.313);
}

h1, h2, h3 {
    color: white;
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    font-weight: 900;
}

a {
    text-decoration: none;
    color: rgb(219, 134, 151);
}

a:visited {
    color: rgb(219, 134, 151);
}

a:hover {
    text-decoration: it;
    font-style: bold;
}