.screencenter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.socials {
    width: 15%;
    border: 9px solid #fdcfff;
    border-radius: 30px;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    font-family: "Trebuchet MS";
    text-align: center;
    margin-top: 20px;
}

.whatido {
    width: 70%;
    border: 9px solid #fdcfff;
    border-radius: 30px;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 30px;
    margin-left: 20px;
    font-family: "Trebuchet MS";
    padding: 8px;
}

.photo {
    width: 15%;
    border: 9px solid #fdcfff;
    border-radius: 30px;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 30px;
    margin-left: 20px;
    padding-top: 3px;
    font-family: "Trebuchet MS";
    padding: 8px;
}

img{
    border-radius: 10px;
}

h1 {
    color: #ffffff;
    text-shadow: 0 0 5px #9ce6dc, 0 0 10px #9ce6dc, 0 0 20px #9ce6dc, 0 0 40px #9ce6dc, 0 0 80px #9ce6dc;
    font-size: 80px;
    padding: 10px;
    text-decoration-line: underline;
}

p {
    color: #ffffff;
    text-shadow: 0 0 5px #9ce6dc, 0 0 10px #9ce6dc, 0 0 20px #9ce6dc, 0 0 40px #9ce6dc, 0 0 80px #9ce6dc;
    font-size: 24px;
}

h2 {
    color: #ffffff;
    text-shadow: 0 0 5px #9ce6dc, 0 0 10px #9ce6dc, 0 0 20px #9ce6dc, 0 0 40px #9ce6dc, 0 0 80px #9ce6dc;
    font-size: 80px;
    padding: 10px;
    text-decoration-line: underline;
}

body {
    background-repeat: no-repeat;
    background: linear-gradient(132deg, white, #d9feff);
    background-size: 400% 400%;
    animation: BackgroundGradient 8s ease infinite;
}

@keyframes BackgroundGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a {

}

.container1 div {
    margin: 10px;
    color: #ffffff;
    text-shadow: 0 0 5px #9ce6dc, 0 0 10px #9ce6dc, 0 0 20px #9ce6dc, 0 0 40px #9ce6dc, 0 0 80px #9ce6dc;
    font-family: "Trebuchet MS";
}

.container1 {
    display: flex;
    align-items: center;
}

.title {
    border: 9px solid #fdcfff;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 65px;
    width: 70%;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    cursor: pointer;
}

.work {
    border: 9px solid #fdcfff;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    width: 30%;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    padding: 20px;
}



.ohyeahyeah {
    border: 9px solid #fdcfff;
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 30px;
    text-align: center;
    padding: 10px 10px;
}

button {
    color: #ffffff;
    text-shadow: 0 0 5px #9ce6dc, 0 0 10px #9ce6dc, 0 0 20px #9ce6dc, 0 0 40px #9ce6dc, 0 0 80px #9ce6dc;
    font-size: 20px;
    padding: 10px;
    text-decoration-line: underline;
    border: 9px solid #fdcfff;
    border-radius: 30px;
}

button:active {
    opacity: 0.8;
}

.modal {
    background-repeat: no-repeat;
    background: linear-gradient(132deg, white, #d9feff);
    background-size: 400% 400%;
    animation: BackgroundGradient 8s ease infinite;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.open {
    opacity: 1;
    z-index: 100;
}

.modal-inner {
    background-image: linear-gradient(120deg, white, #ffd9f0);
    background-repeat: no-repeat;
    border-radius: 30px;
    border: 9px solid #fdcfff;
    padding: 15px 25px;
    text-align: center;
    width: 550px;
    opacity: 100;
}

.modal-inner p {
    line-height: 24px;
    margin: 10px 0;
}