@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --radio-bordes: 25px;
}

* {
    margin: 0;
    border: 0;
    padding: 0;

    /* TIPOGRAFÍA GENERAL */
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

body {
    background-image: url(img/img1.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: grid;
    place-content: center;
}

main {
    background-color: rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(10px);
    color: rgb(235, 235, 235);
    border-radius: var(--radio-bordes);
    padding: var(--radio-bordes);
    border: rgba(200, 200, 200, 0.1) solid 3px;
    box-shadow: 3px 3px 0px 0px;
}

p {
    color: rgb(215, 215, 215);
    margin-top: var(--radio-bordes);
}