@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Raleway, sans-serif;
    font-weight: 400;
    background-color: #121212;
}

article img {
    width: 10%;
    margin-top: 1rem;
    border-radius: 50%;
    border: solid #4103a6 2px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.center {
    display: flex;
    justify-content: center;
}
header {
    display: flex;
    justify-content: space-between;
    /* gap: 20px; */
    background: #1a1a1a;
    padding: 1.5625rem;
    margin: 1.25rem 0;
    width: 90%;
    align-items: center;
    border-bottom: solid #4103a6 2px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.6); 

  }
#logo {
    font-size: 20px;
    color: white;
    line-height: 1.4em;
    min-width: 18.75rem;
}

#logo small {
    font-weight: 300;
}


article {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.6); 
    width: 80%;
    padding: 1.5625rem;
}


section {
    
    text-align: center;
}
#navigace ul{
    display: flex;
    gap: 20px;
    align-items: center;
    gap: 10px
}
#navigace ul {
    list-style: none;
}
#navigace a {
    text-decoration: none;
    color: white;
}

#navigace a:hover
{
    border-bottom: solid #4103a6 2px;
    /* color: #fff;
    text-shadow:
      
      0 0 7px #4103a6,
      0 0 10px #4103a6,
      0 0 21px #4103a6; */
}
/* section p {
    text-align: justify;
}
section h2 {
    text-align: center;
    margin-bottom: 15px;
} */

section {
    text-align: center;
    font-size: 60px;
}

@media only screen and (max-width: 600px) {
    header {
        flex-direction: column;
        width: 80%;
    }
    #logo small{
        display: none;
    }

    #logo {
        margin: .625rem;
    }
}