@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: url("/images/mount-everest-aerial-view-himalayas-istock-3745.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    width: auto;
}

aside{
    display: flex;
    flex-direction: column;
    float: left;
    background-color: transparent;
    height: 110vh;
    backdrop-filter: blur(100px);
    width: 10vh;
    align-items: center;
    justify-content: space-between;
}

aside h1{
    padding-top: 17.5px;
    font-weight: 900;
    color: #e0e1dd;
}

aside a {
    color: #0c0c0c;
    font-weight: 700;
    display: flex;
    padding-bottom: 100px;
    font-size: 15px;
}

header{
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(100px);
    align-items: center;
    padding-left: 20px;
    padding-right: 40px;
    height: 7.5vh;
}

.header-logo{
    color: #ffffff;
    font-size: 30px;
}

.btn-header a{
    color: #c5c3c6;
    font-size: 20px;
    padding: 10px;
    font-weight: 700;
    border-radius: 25px;
    background-color: #2d3142;
}
main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92.5vh;
    padding-left: 20vh;
    padding-right: 30vh;
}

.left-side {
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid transparent;
    width: 60vh;
    height: 60vh;
}

.left-side article{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 60vh;
    padding-bottom: 10px;
    padding-top: 30px;
}

.right-side{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-side img{
    height: 50vh;
    border: 2px solid transparent;
    border-radius: 150px
    
}

.articel-title{
    font-weight: 900;
}

footer{
    height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(100px);
}

footer h1{
    color: white;
}

footer p{
    color: white;
}

