/* CSS Stylesheet */

/* ToDo */
* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}


nav {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    height: 10vh;
}

nav li {
    padding: 10px 20px 15px 20px;
    display: inline-block;

}

li a {
    color: white;
    font-size: small;
    font-weight: 600;
    text-decoration: none;
}

#logo {
    text-transform: uppercase;
    padding: 6px 15px 6px 15px;
    border-radius: 20px;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


#linkedin {
    color: white;
    background-color: #292d30;
    padding: 10px 20px 10px 20px;
    border: 0;
    border-radius: 20px;
    margin-top: 5%;
}

#linkedin a {
    font-size: 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

main header {
    background-color: #E6EDF5;
    background-image: url('profile.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% 30%;

}

header section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: right;
}

header section div {
    width: 100%;
    padding: 5%;
}

header section h1 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

header section h2 {
    color: #a7cec9;
    text-transform: uppercase;
}

article aside section {
    font-size: small;
    width: 50%;
    padding: 0px 80px 0px 80px;
}

aside {
    display: flex;
    padding: 40px 0px 40px 0px;
    color: white;
    background-color: #292d30;
}

aside section h3 {
    margin-bottom: 20px;
}

aside section div {
    margin: 4% 0% 2% 0%;
}

aside section ul {
    margin-left: 8%;
}

button:hover {
    cursor: pointer;
    opacity: 0.5;
}

#profile h3 {
    color: #a7cec9;
    font-size: 20px;
    text-transform: uppercase;
}

#profile h4 {
    margin-bottom: 3px;
}

#profile p {
    color: #a7cec9;
    margin-bottom: 3px;
}

#activity {
    background-color: #a7cec9;
    padding: 40px 100px 40px 100px;
}

#activity h3 {
    text-transform: uppercase;
    color: #3D3C3A;
    font-size: 20px;
    text-align: center;
}

#activity img {
    width: 40vw;
    border-radius: 10px;
}

#activity button {
    padding: 20px 70px 20px 70px;
    background-color: green;
    color: white;
    border-radius: 10px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
}

#activity a {
    text-decoration: none;
    color: white;
}

#activity div {
    margin-top: 40px;
    text-align: center;
    align-items: center;
}

#activity div p {
    width: 50%;
}

#cheatsheet {
    background-color: #292d30;
    text-align: center;
}


#cheatsheet button {
    padding: 10px 30px 10px 30px;
    background-color: #a7cec9;
    border: 0;
    border-radius: 10px;
    color: #292d30;
    font-weight: bold;
}

#cheatsheet a {
    text-decoration: none;
    color: #292d30;
}

#cheatsheet img {
    margin-bottom: 3%;
}

footer section {
    margin: 2%;
    font-size: small;
    color: #3D3C3A;
    text-align: center;
}


.player-drop {
    display: block;
    animation: drop 1.5s linear;
}

@keyframes drop {
    0% {
        transform: translateX(1500px);
    }

    50% {
        transform: translateX(0px);
    }

}

@media (max-width: 1000px) {

    article aside section {
        padding: 0px 30px 0px 30px;
    }

    #cheatsheet button {
        padding: 5px 20px 5px 20px;
    }

    #activity button {
        padding: 10px 30px 10px 30px;
    }

    #activity img {
        width: 100%;
    }
}