@font-face {
  font-family: "Satoshi";
  src: url(./assets/Satoshi-Variable.ttf) format("truetype-variations");
  font-weight: 100 900;   
  font-stretch: 75% 125%;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
}

.main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color:#ffffff;
    background-image:
    radial-gradient(at 13% 23%, hsla(357,93%,77%,0.25) 0px, transparent 50%),
    radial-gradient(at 18% 86%, hsla(342,79%,79%,0.25) 0px, transparent 50%),
    radial-gradient(at 69% 31%, hsla(244,79%,66%,0.25) 0px, transparent 50%),
    radial-gradient(at 53% 15%, hsla(17,89%,63%,0.25) 0px, transparent 50%),
    radial-gradient(at 85% 54%, hsla(117,80%,75%,0.25) 0px, transparent 50%),
    radial-gradient(at 42% 68%, hsla(52,75%,67%,0.25) 0px, transparent 50%),
    radial-gradient(at 90% 45%, hsla(27,81%,60%,0.25) 0px, transparent 50%);
}

.main h1{
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
    text-align: center;
    z-index: 1;
}

.main p{
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    z-index: 1;
}

.main a{
    color: #ffffff;
    font-weight: bold;
    z-index: 1;
    text-align: center;
    text-decoration: none;
    font-size: 2rem;
    margin-top: 1.2rem;
    border: 2px solid #222;
    border-radius: 8px;
    padding: .25rem;
    aspect-ratio: 1/1;
    background-color: #000;
    box-shadow: inset -3px 2px 4px #ffffff87, 
  rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, 
  rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;

}

.object, .object2{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: crimson;
    position: absolute;
    filter: blur(200px);
    z-index: 0;
    opacity: 0.5;
    top: 60%;
    left: 70%;
}

.object2{
    background-color: #00bfff;
    width: 300px;
    height: 300px;
}

.main img{
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 5px #0000004c;
}

@media (max-width: 768px) {
  .main h1 {
        font-size: 1.5rem;
    }

    .main p {
        font-size: 1rem;
        max-width: 300px;
        line-height: 1.2
    }
}

@media (max-width: 480px) {
    .main h1 {
        font-size: 1.5rem;
    }

    .main p {
        font-size: 1rem;
        max-width: 300px;
        line-height: 1.2
    }
}
