body, html {
    font-family: ivyora-display, sans-serif;  
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-y: overlay;
}

/*Begin background blur*/
.background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #FFFFFF, #ECE9E6);
    display: flex;
    flex-grow: 1;
    z-index: -1;
}

.background div {
    position: absolute;
    border-radius: 100%;
    height: 0;
    filter: blur(240vw);
    opacity: 0.4;
}

.background div:nth-child(1) {
    background: linear-gradient(132deg, #ff47d7 0.00%, #f9ec5d 100.00%);
    width: 100%;
    padding-top: 100%;
    left: 63%;
    top: 43%;
    transform: translateX(-50%) translateY(-50%);
}
/*End background blur*/

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 100%;
    position: relative;
}

.hello {
    font-family: "ivyora-display", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 350px;
    z-index: 2;
    position: absolute;
    bottom: 30px;
}

.text {
    background-color: white;
    text-align: center;
    margin: 0;
    text-align: center;
    padding: 40px 60px;
    border-radius: 5px;
    width: 400px;
    z-index: 1;
    position: absolute;
    bottom: 20px;
}

.icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 40px;
    padding-top: 20px;   
}

img {
    height: 30px;
}

.social-icon:hover {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}
/*
@media screen and (max-device-width: 850px), (max-width: 850px) and (orientation: landscape) {
    .content {
        height: 95%;
        position: relative;
    }
    .hello {
        font-size: 150px;
        position: absolute;
        bottom: 55px;
    }
    .text {
        padding: 20px;
        width: 50%;
    }
}*/

@media screen and (max-device-width: 600px), (max-width: 600px) and (orientation: portrait){
    .background{
        background: linear-gradient(to bottom, #FFFFFF, #f2d9dc);
    }

    .hello {
        font-size: 150px;
        position: absolute;
        bottom: 80px;
    }
    .content {
        height: 70%;
        position: relative;
    }
    .text {
        padding: 20px;
        width: 60%;
    }
    .icons {
        padding: 0;  
    }
}



