:root {
    --background-color: #141b36;
    background-color: var(--background-color);
    color: white;
    font-family: sans-serif;
    font-size: clamp(1rem, 1vw, 8rem);
}

#buttons{
    position: fixed;
    right: 3vw;
    bottom: 3vh;
    
}

#buttons > a {
    padding: 15px;
    width: 2vw;
    height: 2vw;
    margin: 5px;
    transition: 0.5s;
    text-align: center;
    float: left;
    clear: left;
    vertical-align:middle;
    display: table-cell;
    border-radius: 100%;
    text-decoration: none;
    color: white;
    border-radius: 15px;
    filter: drop-shadow(0 0 0.2rem rgb(0, 0, 0));
}

#buttons > a:hover {
    transition: 0.5s;
    transform: translateY(0.5vh);
}

#welcome-text {
    font-family: serif;
    text-align: center;
    font-size: clamp(3rem, 8vw, 6rem);
}



@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body {
    animation-play-state: running !important;
    animation-fill-mode: none !important;
    animation-delay: 0s !important;
    animation: fadeIn 2s !important;
    
}


summary {
    font-size: clamp(1.3rem, 1.3vw, 8rem);
    text-align: center;
    border-radius: 20px;
    background-color: #1e2749;
    font-family: serif;
    text-decoration-line: underline;
}

details {
    display: flex;
    justify-content: center;
    text-align: left;
    width: 80vw;
    margin-left: 10vw;
    background-color: #1e2749;
    border-radius: 20px;
}

details summary {
    cursor: pointer;
    transition: 150ms;
    text-align: center;
}
  
details[open] summary {
    margin-bottom: 10px;
    background-color: #1e2749;
    transition: 200ms;

}

#pgp-key-block {
    font-size: clamp(1rem, 1vw, 8rem);
    display: block;
    word-wrap: break-word;
    margin: 1.5vw;
}

#mail-picture {
    border-radius: 15px;
    margin-bottom: 1vh;
}

#mail-contact {
    display: flex;
    justify-content: center;
}

.inline {
    display: flex;
    justify-content: center;
    margin: 1vh;
}

.img-responsive {
    border-radius: 10px;
    margin-left: 1vw;
    margin-right: 1vw;
    width: 90%;
    height: auto;
}

#mail-contact {
    margin-top: 5vh;
}
