@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    font-family: "Quicksand", "sans-serif";
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: url('../image/RADICAL_LOCK_RENDER.jpg');
    background-size: cover;
}

header {
    background-color:  #1d1d1d ;
    border-bottom: #ffffff solid 3px;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

header h1 {
    font-size: 24px;
    margin-left: 20px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline; 
    padding: 10px 20px;
}

nav ul li a {
    padding: 10px ;
    color: rgb(255, 255, 255);
    text-decoration: none;
}
nav ul li a:hover {
    color: #39FF14;
    text-shadow: 1px 2px 10px #33da15;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s ease-out 0s;
}


main {
    margin: 22px;
    display: flex;
    align-items: center;
    padding: 30px;
    
}

.content {
    flex: 1;
    padding: 20px;
}

article {
    box-shadow: 4px 4px 5px black;
    background-color: #1d1d1d;
    color: white;
    margin: 0 0 20px 0;
    border: 1px solid white;
    padding: 20px;
    flex-grow: 1;
    border-radius: 10px;
}

article h2 {
    margin: 10px;
    color: #ff11b8;
    font-weight: bold;
    text-shadow: 2px 2px 12px #890473;
    font-size: 30px;
}

aside {
    box-shadow: 4px 4px 5px black;
    background-color: #1d1d1d;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgb(255, 255, 255);
    width: 250px;
    margin: 20px;
}

img {
    width: 120px;
    border-radius: 4px;
    border: 2px solid  #1F51FF;
    box-shadow: 0 0 12px rgba(22, 68, 232, 0.5);
}

.social-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.social-links h2{
    font-weight: bold;
}
.social-links a {
    text-decoration: none;
    color: white;
}

.social-links a:hover {
    color: #1F51FF;
    text-shadow: 1px 1px 10px #1c45da;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.2s ease-out 0s;
}

footer {
    display: flex;
    position: fixed;
    width: 100vw;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background-color: #1d1d1d;
    color: #fff;
    padding: 10px;
    font-size: 10px;
    border-top: #ffffff solid 3px;
}

@media screen and (max-width: 721px) {
    header{
        flex-direction: column;
        align-items: center;}
    main {
        flex-flow: column nowrap;
    }
}

@media screen and (max-width: 500px) {
    header nav ul li a{
        font-size: smaller;
        padding: 1px;
        justify-content: center;
    }
    header nav ul li {
        justify-content: center;
        align-items: center;
        padding: 5px;
    }
    nav ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}