* {
    font-family: Inter;
    scroll-behavior: smooth;
    background: #001233;
    color: whitesmoke;
}

.logo {
    color: rgb(209, 201, 213);
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    position: sticky;
    top: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 50px;
}


.info-container {
    max-width: 350px;
    line-height: 30px;
    padding: 25px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.info {
    padding: 5px;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.icon > img{
    height: 38px;
    cursor: pointer;
}


.icon > .github {
    border-radius: 5px;
}

.icon > .leetcode {
    background: white;
    border-radius: 25px;
}

.resume {
    text-decoration: none;
    border: 1px solid;
    padding: 10px 25px;
    margin-top: 10px;
}

.skill {
    width: 100%;
    height: 100vh;
}

.skill-title {
    text-align: center;
    margin-top: 45px;
    letter-spacing: 1px;
}

.skill-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}

.skill-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 125px;
}

.skill-logo:hover {
    transition: all 0.5s ease;
    transform: scale(1.1);
}

.skill-logo > img {
    margin-top: 15px;
    width: 75px;
}

.skill-logo > p {
    margin-top: 8px;
    font-size: 15px;
}

.tailwind {
    border-radius: 50px;
}

.projects {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-title {
    margin-top: 45px;
    text-align: center;
}

.card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-container > a {
    text-decoration: none;
}

.card {
    width: 250px;
    height: 300px;
    border: 2px solid rgb(73, 74, 85);
    margin: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.card img {
    height: 85%;
    width: 100%;
    object-fit: cover;
    margin-top: 50px;
}

.card-title {
    margin-top: 35px;
    background: #a543b9;
    width: 108%;
    padding: 8px 15px;
    text-align: center;
}

.card:hover {
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.footer {
    height: 50px;
    padding: 8px;
}

@media screen and (min-width: 576px) {
    .info {
        min-width: 450px;
    }
}