body {
    margin: 0;
    background-color: hotpink;
}

h1, .welcome > span {
    font-family: "New Times Roman";
}

@property --header {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.mySkills-container {
    background-color: rgb(150,150,150);
    padding: 20px;

}

.mySkills-1-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mySkills-1 {
    height: 100px;
    width: 200px;
    overflow: hidden;
    padding: 20px;
}

.containerSmall {
    animation: containerSmall 0.3s linear forwards;
}

@keyframes containerSmall {
    from {
        
    }

    to {
        height: 150px;
    }
}

.containerLarge {
    animation: containerLarge 0.3s linear forwards;
}

@keyframes containerLarge {
    from {
        height: 150px;
    }

    to {
        height: 100px;
    }
}



.mySkills-1-h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.mySkills-1-below {
    display: flex;
    justify-content: center;
    align-items: center;
}   

.imgSmall {
    animation: imgSmall 0.3s linear forwards;
}

@keyframes imgSmall {
    from {
        
    }

    to {
        height: 40px;
    }
}

.imgLarge {
    animation: imgLarge 0.3s linear forwards;
}

@keyframes imgLarge {
    from {
        height: 40px;
    }

    to {
        height: 60px;
    }
}

.h1Small {
    animation: h1Small 0.3s linear forwards;
}

@keyframes h1Small {
    from {
        font-size: 1.75rem;
        margin-top: 20px;
    }

    to {
        font-size: 1.25rem;
        margin-top: 10px;
    }
}

.h1Large {
    animation: h1Large 0.3s linear forwards;
}

@keyframes h1Large {
    from {
        font-size: 1.25rem;
        margin-top: 10px;
    }

    to {
        font-size: 1.75rem;
        margin-top: 20px;
    }
}

.mySkills-1-p {
    display: inline-block;
}

.pSmall {
    position: relative;
    animation: pSmall 0.3s linear forwards;
}

@keyframes pSmall {
    from {
        
    }

    to {
        transform: translateY(100px);
    }
}

.frontentDeveloper {
    font-size: 1.25rem;
}

.header-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
}

@keyframes header {
    from {

    }

    to {
        --header: 360deg;
    }
}

.header-name {
    font-size: 1.5rem;
    height: min-content;
}

.hover {
    transition: all 0.5s;
}

.hover:hover {
    text-shadow: 0px 0px 15px rgb(0, 0, 0);
    color: black;
}

.welcome, .userName {
    background-clip: text;
    background-image: linear-gradient(to right, purple, hotpink, deeppink, palevioletred, purple);
    color: transparent;
    font-size: 3rem;
}

section, .header-div {
    border-radius: 10px;
    box-shadow: 0px 0px 10px purple;
}

.menu-container {
    position: relative;
    box-shadow: 0px 0px 10px purple;
}

.menu-div {
    font-size: 1.5rem;
    background-color: rgb(255, 105, 180); /* Hot pink */
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.5s;
    z-index: 2;
}

.menu-div:hover {
    background-color: purple;
}

ul {
    display: none;
    position: absolute;
    background-color: rgb(255, 105, 180); /* Hot pink */
    width: 100px;
    right: -15%;
    top: 100%;
    padding: 10px;
    z-index: 10;
    list-style: none;
    text-align: start;
}

li {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 5px 10px;
    transition: all 0.5s;
}

li:hover {
    background-color: purple;
}

.header-a {
    text-decoration: none;
    color: white;
}

html {
    scroll-behavior: smooth;
}

.rotate {
    display: inline-block;
}

.displayInlineOn {
    display: inline-block;
    animation: slideDown 0.5s ease-in-out forwards;
}

.profile-a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: rgb(255, 20, 147); /* Deep pink */
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;   
    transition: all 0.5s; 
}

.profile-a:hover {
    background-color: rgb(199, 21, 133); /* Medium violet red */
}

#normal {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
    padding: 20px;  
}

.normal-container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-h1 {
    margin: 0;
    font-size: 3rem;
}

.creeper {
    height: 150px;
}

.myname-h1 {
    font-size: 2.25rem;
}

.profile-container {
    display: flex;
    gap: 400px;
    background-color: rgb(150,150,150);
    padding: 40px;
    box-shadow: 0px 0px 10px black;
}

#aboutMe {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
    padding: 20px;   
}

.aboutMe-h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

#userName {
    font-size: 1.25rem;
    color: white;
}

.aboutMe-p {
    font-size: 1.25rem; 
    line-height: 150%;
    margin: 0;
}

.aboutMe-container {
    padding: 40px;
    background-color: rgb(150,150,150);/* Hot pink */
    box-shadow: 0px 0px 10px black;
}

* {
    border-radius: 10px;
    font-family: Roboto;
}

#myStudies {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
    padding: 20px;  
}

.myStudies-h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.myStudies-container {
    padding: 40px;
    background-color: rgb(150,150,150); /* Hot pink */
    box-shadow: 0px 0px 10px black;
}

main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.school a {
    color: purple;
}

#mySkills {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
    padding: 20px; 
    height: 500px; 
}

.mySkills-h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

#footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
    align-items: center;
    background-color: rgb(255, 182, 193); /* Light pink */
    margin: 50px;
    padding: 20px; 
}

#footer * {
    color: rgb(199, 21, 133);
    font-family: Roboto;
}

@media screen and (max-width: 450px){
    .profile-container {
        gap: 0px;
    }

    .creeper {
        height: 100px;
    }

    .a-profiel {
        display: flex;
    }

    .myname-h1 {
        font-size: 1.2rem;
    }

    .profile-h1 {
        font-size: 2rem;
    }

    #normal {
        margin: 20px;
    }

    .header-div {
        margin: 20px;
    }

    .header-name {
        font-size: 1rem;
    }

    .welcome, .userName {
        font-size: 2rem;
    }

    .aboutMe-h1 {
        font-size: 2rem;
    }

    .aboutMe-p, #userName {
        font-size: 1rem;
    }

    #footer * {
        font-size: 0.75rem;
    }
}

@media screen and (min-width: 451px) and (max-width: 1002px) {
    .profile-container {
        gap: 150px;
    }

    .aboutMe-h1 {
        font-size: 2.25rem;
    }

    .aboutMe-p, #userName {
        font-size: 1rem;
    }

    .creeper {
        height: 100px;
    }

    .a-profiel {
        display: flex;
    }

    .myname-h1 {
        font-size: 1.2rem;
    }

    .profile-h1 {
        font-size: 2rem;
    }

    #normal {
        margin: 20px;
    }

    .header-div {
        margin: 20px;
    }

    .header-name {
        font-size: 1rem;
    }

    .welcome, .userName {
        font-size: 2rem;
    }

    #footer * {
        font-size: 1rem;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}