@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Scrollbar */

::-webkit-scrollbar{
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb{
    background: #ffdb56;
    border-radius: 10px;
}

body{
    font-family: 'Poppins';
    background: #3090d4;
    color: #fff;
}

.viewall {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.viewDetailButton {
    text-decoration: none;
    font-size: 1.35em;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 12px 40px;
    margin-top: 20px;
    transition-duration: 500ms;
    font-weight: 550;
    margin-bottom: 50px;
}

.viewDetailButton:hover {
    text-decoration: none;
    color: #fefefe;
	letter-spacing: 5px;
	transform: translateY(-3px);
}

section{
    min-height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    position: relative;
    width: 550px;
    height: 350px;
    backdrop-filter: blur(25px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
}

.top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #d5cccc24;
}

.top span{
    font-size: 20px;
    margin-left: 20px;
}

.top i{
    font-size: 30px;
    padding: 10px;
    border-radius: 30%;

}

.top i:hover{
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}

.top p{
    position: absolute;
    top: 50px;
    right: 15px;
    background: rgba(0,0,0,0.15);
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0;
    transition: .5s ease-in-out;

}

.top i:hover ~ p{
    opacity: 1;
    transition: .5s ease-in-out;
}

.middle{
    display: flex;
    flex-direction: row;
    padding: 20px 30px 0px 30px;
}

.middle img{
    width: 170px;
    border-radius: 50%;
    border: 5px solid transparent;
    outline: 3px dashed rgba(255,255,255,0.25);
    max-height: 170px;
}

.middle .right{
    margin: 20px 0px 10px 50px;
}

ul li{
    list-style-type: circle;
}

.social-icon {
    display: flex;
    flex-direction: row;
}

.social-icon a {
  text-decoration: none;
  color: white;
}

.social-icon span{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin: 0 5px;
    transition: .4s;
    cursor: pointer;

}


.social-icon i{
    font-size: 20px;
}

.social-icon span:hover{
    color: #3090d4;
    background: #fff;
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 15px #fff;
}

.bottom{
    display: flex;
    flex-direction: row;
    justify-content: right;
    padding: 0 30px;
}

.btn{
    background: #3090d4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: .3s;
}


.btn:hover{
    box-shadow: inset 0 0 0 20px #0e1d92;
}


@media (max-width: 600px) {

    .card{
        width: 450px;
    }

}