/*CSS*/
@import url('identity.css');
@import url('animations.css');
@import url('fonts.css');
@import url('text.css');
@import url('special.css');

/* Base */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--primary);
    color: var(--flatGray);
    
    .bricolage-grotesque-p
}
a:link {
    color: var(--secondary);
    text-decoration: underline;
}
a:link:hover {
    color: var(--tertiary);
    text-decoration: none;
}
/* General END*/

/* Header */
header {
    background: var(--primary);
    padding: 10px 0px;
    text-align: center;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 16px;
    border-radius: 64px;
    border: 2px outset rgba(205, 205, 255, 0.2);
    background-clip: padding-box;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    
    a:link {
        text-decoration: none;
        color: var(--secondary);
        font-size: 20px;

        transition: 0.1s ease-in-out;
    }
    
    a:link:hover {
        text-decoration: none;
        color: var(--tertiary);
    }
}
/* Main */
main {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0px;
}

section {
    background: var(--primary);
    background-clip: padding-box;
    border-radius: 64px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 1);
    border: 2px solid var(--flatGray);


    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    text-align: center;
}

.entry {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: space-between;
    gap: 20px;

    border-radius: 48px;
    padding: 12px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .2);

    background: linear-gradient(20deg, var(--secondaryDark), rgba(255, 255, 255, 0.1));
    background-clip: padding-box;
    border: 1px solid var(--secondary);

    transition: 0.15s ease-in-out;
    
    h2 {
        color: var(--primary);
        margin-top: 0;
        flex: 1;
        margin-bottom: 0;
        margin-left: 16px;
        text-decoration: none;
    }
    
    .logo {
        float: right;
        margin-right: 2px;
    }
    
    .entry-info {
        padding: 0 0;
        color: var(--flatGray);
        
        .bricolage-grotesque-max
    }
}
.entry:hover {
    background: linear-gradient(20deg, var(--tertiaryDark), rgba(255, 255, 255, 0.3));
    border: 1px solid var(--tertiary);
    
    animation-duration: 0.15s;
    animation-name: bouncIN;
    transform: translate(-5px, -3px) scale(1.015);

    box-shadow: 0 0 0 rgba(15, 23, 42, 0.08);
    
    h2 {
        color: var(--flatGray);
        text-decoration: none;
    }
    
    transition: 0.15s ease-in-out;
}
@supports (backdrop-filter: blur(16px)) {
    .entry {
        /* Supported browsers get the full effect */
        backdrop-filter: blur(16px);
    }
}
.logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 100%;
    border: 3px solid var(--flatGray);
}

#contact .logo {
    position: absolute;
    margin-top: -16px;
    z-index: 1;
    width: 200px; height: 200px;
}

.plain-text {
    margin-top: 50px;
    margin-right: 12px; 
    text-overflow: ellipsis;
    white-space: wrap;
    text-align: left;
    
    background: var(--primary);
    border-radius: 32px;
    
    p {
        margin: 32px;
        font-size: 1.2rem;
    }
}
/* Main END */



/* Footer */
footer {
    padding: 100px;
    text-align: center;
    height: 100%;
    background: var(--primary);
    font-size: 0.9rem;
    font-family: "Helvetica", "Arial", sans-serif;
    color: var(--flatGray);
}

.copyright-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 50px;
}
.copyright-center-group {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}
.copyright-date {
    position: absolute;
    right: 100%;
    white-space: nowrap;
    margin-right: 8px;
}