* {
    margin: 0;
    padding: 0;
    font-family: "General Sans";
    box-sizing: border-box;
}

#minicircle {
    width: 10px;
    height: 10px;
    background-color: white;
    position: absolute;
    border-radius: 50%;
    z-index: 9999;
    transition:all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

*::selection {
    background-color: rgb(36, 255, 207);
}

html, body {
    width: 100%;
    height: 100%;
}

.bounding {
    width: fit-content;
    overflow: hidden;
}
.bounding .boundingelem {
    transform:translateY(100%);
}

#main {
    height: auto;
    width: 100%;
    background-color: black;
}

#hero {
    position: relative;
    color: white;
    width: 100%;
    height: 100vh;
    background-color: black;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    color: white;
}

#nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

#heading {
    margin-top: 90px;

}

#heading h1 {
    margin-left: 30px;
    opacity: .6;
    line-height: 1;
    font-family: "General Sans";
    font-size: 10vw;
    text-transform: uppercase;
    font-weight: 900;
}

#heading #secondh1 {
    margin-left: 230px;
}

.blocktext {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: end;
}

.blocktext h5 {
    text-transform: uppercase;
    font-size: 15px;
    text-align: right;
}

#chotiheading {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 100px;
    padding-right: 50px;
}

#chotiheading h5 {
    text-transform: uppercase;
    font-size: 1vw;
    margin-top: .5vw;
    text-align: right;
}

#herofooter {
    padding: 0 2vw;
    width: 100%;
    position: absolute;
    bottom: 2.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#herofooter a {
    color: white;
    text-transform: uppercase;
    text-decoration: none; 
}

#herofooter #iconset {
    display: flex;
    gap: 5px;
}

#herofooter .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #888;
}

/* Page 2 : Second Animation Box Designing */

#second {
    padding-right: 10vw;
    padding-top: 200px;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: white;
}

.elem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3.5vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888;
}

.elem h1 {
    text-transform: uppercase;
    font-size: 7.6vw;
    opacity: .7;
}

.elemlast {
    border-bottom: 1px solid #888;
}

.elem img {
    z-index: 999;
    height: 140%;
    opacity: 0;
    position: absolute;
}

#contact:hover {
    background-color:white;
    color: black;
    transition: .7s;
}

/* About Section Starting there */

#about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40vw;
    gap: 50px;
    width: 100%;
    padding: 10vw 5vw;
    background-color: black;
    color: white;
}

#textabout {
    width: 70%;
}

#textabout h5 {
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}

#textabout p {
    line-height: 1.3;
    margin-bottom: 30px;
}

#about img {
    width: 200px;
    border-radius: 50%;
    border: 2px dashed #888;
    animation: animatorPic 1s timing-function 0 infinite direction fill-mode;
}
#about img:hover {
    box-shadow: 0 0 10px #00ffd9, 0 0 40px #9e8e8e , 0 0 70px #41d5e9;            
    transition: 1s;
    border: 2px dashed #00e5ff;
    
}

#textabout a {
    padding: 12px 22px;
    border: 2px solid white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 17px;
    color: white;
}

/* Contact Section  */

#subscribe {
    background-color: black;
    color: white;
    padding: 20px 30px;
    padding-bottom: 7vw;
}

#subscribe h5 {
    text-transform: uppercase;
    opacity: .6;

}

#subscribe h3 {
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}

#subscribe h3:hover {
    color: red;
    text-decoration-thickness: underline;
    font-size: 14.3px;
    transition: 1s;
}
 

/* Footer Section For Last */

#footer {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}

#footerleft {
    display: flex;
    gap: 20px;
}

#footerright {
    display: flex;
    gap: 30px;
}

#footer a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    font-size: 14px;
}