@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'DM Serif Display', serif;
}

@font-face {
    font-family:Lineseed;
    src: url(../font/LINESeedSans_Rg.ttf);
}

::-webkit-scrollbar{
    width:0;
}

.background{
    width: 100%;
    height: 100vh;
}
.container{
    min-height: 100vh;
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.image img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: 100% 90%;
    border-radius: 50%;
    margin-bottom: 8px;
}
.glass{
    padding:30px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}
.text{
    text-align: center;
    margin-bottom: 34px;
}
.text > p{
    font-family:Lineseed;
}
.all-btn{
    display:flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
}
a{
    display:flex;
    justify-content:space-around;
    height: 40px;
    align-items: center;
    background-color: bisque;
    text-decoration: none;
    border-radius: 20px;
    transition:all 0.3s ease-out;
}
a:hover{
    transform: scale(1.1,1.1);
}
a i{
    font-size: 30px;
    color:black;
}
a p{
    color: black;
    font-size:20px;
}