@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Nunito:ital,wght@0,500;0,800;0,1000;1,500&family=Righteous&display=swap');

/*
    > regular body fonts
        font-family: 'Lato', sans-serif;
    
    > Display Childish fonts
        font-family: 'Nunito', sans-serif;

    > Display Fonts
        font-family: 'Righteous', cursive;
*/
body {
    margin: 0;
    
}
.top-container {
    height: 100vh;
    
    color: #66BFBF;
    background-color: #EAF6F6;
    text-align: center;

    position: relative;

    overflow: hidden;
}
.main-head {
    font-family: 'Righteous', cursive;
    width: fit-content;
    margin: auto;
}
.sub-head {
    font-family: 'Nunito', sans-serif;
    width: fit-content;
    margin: auto;
    font-size: 2rem;
}
.cloud-top {
    position: relative;
    left: 100px;
}
.cloud-bottom {
    width: 400px;
    position: absolute;
    bottom: 200px;
    left: 250px;
}
.mountain {
    display: block;
    margin: auto;
    width: 800px;
}

.middle-container {
    height: 500px;
    text-align: center;
}
.img-container {
    background-color: rgb(236, 236, 236);
    width: 150px;
    padding: 10px;
    margin: 100px auto 0;
    border-radius: 0.5rem;
}
.img-container img {
    object-fit: cover;
    width: 150px;
}
.greetings {
    font-size: 2rem;
    margin: 10px auto;
}
.self-desc {
    width: 300px;
    font-size: 1rem;
    margin: 0 auto 100px;
}

hr {
    width: 10%;
    border: none;
    border-top: 8px dotted #b9b9b9;
}

.bottom-container {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding: 50px 0;
    background-color: #66bfbf38;
    text-align: center;
}

.skill-container {
    margin: 0 auto;
    width: 600px;
    height: 200px;
    text-align: left;
}
.skill-container img{
    width: 150px;
    float: left;
    margin-right: 10px;
}
.skill-container h3 {
    color: #11999e;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.contact-me {
    text-align: center;
    line-height: 3;
}
.contact-me button {
    padding: 10px;
    margin: 0 auto 30px;
    display: block;

    border: none;
    border-radius: 12px;
    
    background-color: #11999e;
    background-image: linear-gradient(to right, #0ee2e9, #11999e);
    
    font-weight: 700;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.contact-me button:hover {
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.452);
}

footer {
    padding: 30px;
    background-color: #11999e;
    margin: 0;
    text-align: center;
    color: white;
    font-family: 'Lato', sans-serif;
}
footer a {
    margin: 0 40px;
    color: #14dfe6;
    text-decoration: none;
    /* font-weight: 700; */
    font-family: 'Righteous', cursive;
    font-size: 1.5em;
    padding: 10px;
    transition: 0.3s;
}
footer a:hover {
    background-color: #035f61;
    border-radius: 5px;
}