* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    flex-wrap: wrap;
    display: flex;
    color: #fff;
    height: 100vh;
    width: 100vw;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

header a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header a:hover {
    color: #4cd9ff;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
}

.names>h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in;
}

.names>h2 {
    font-weight: 400;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.names {
    width: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
}

.names>h2,
h1 {
    width: 100%;
    text-align: center;
}

.socials {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.social-icon {
    animation: popup 1s normal;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    margin: 0px 10px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.8rem;
}

.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
}

.social-icon>img {
    width: 100%;
    border-radius: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(0.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}