* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: black;
}



img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    overflow: hidden;
    background-image: url('./4k-Windows-11-Dark-Purple-Abstract-Waves-4K-Wallpaper-2.jpg');
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    transform: scale(1.1);
}

h1 {
    display: flex;
    position: absolute;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 200;
    text-shadow: 4px 4px 10px black;
}

h2 {
    position: absolute;
    z-index: 1;
    color: white;
    font-weight: 200;
    text-align: center;
    font-size: 30px;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -57%);
    text-shadow: 4px 4px 10px black;

}

.icon{
    position: absolute;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 100px;
    top: 60%;
    left: 50%;
    transform: translate(-50%);
    text-shadow: 4px 4px 10px black;
}

.icon:hover{
    color: grey;
}

@media (max-width: 768px) {
    body {
        clip-path: inset(0 0 0 0);
        position: fixed;
    }
    h1 {
        font-size: 50px;
        line-height: 1;
    }
    h2 {
        font-size: 20px;
        top: 60%;
    }
    .icon{
        font-size: 50px;
        top: 75%;
    }
}