* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

nav {
background-color: black;
display: flex;
justify-content: space-around;
align-items: center;
height: 80px;
}

nav ul {
    width: 200px;
    display: flex;
    justify-content: space-around;
    list-style: none;
}
nav ul li a {
    text-decoration: none;
    font-size: 20px;
    color: white;
}

nav .top {
    font-size: 30px;
    font-weight: bold;
    color:white
}

#home {
    position: relative;
    height: 100vh;
    display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
}

#home #catimage {
    width: 200px;
    margin-top: 100px;
}

#home h1 {
    margin-top: 20px;
}

#home p {
    font-size: 25px;
    width: 40%;
    text-align: center;
    margin-top: 20px;
    color: gray;
}

#home #Wave {
    position: absolute;
    width: 100%;
    bottom: 0;
}

#Contact_me {
    background-color: black;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#Contact_me .box {
    background-color: white;
    width: 900px;
    height: 500px;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#Contact_me #h1 {
    color: white;
    font-size: 40px;
    margin-bottom: 30px;
}

#Contact_me .box img {
    width: 300px;
}

#Contact_me .box .social_email  {
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#Contact_me .box .social_email .socialIcons {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

#Contact_me .box .social_email .socialIcons .fab {
    font-size: 60px;
    color: black;

}

#Contact_me .box .social_email .email {
    font-size: 30px;
    font-weight: bold;
}