* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    user-select: none;
    outline: none;
}

:root {
    --black: #000;
    --green: #05d9a9;
    --bgreen: #121b22;
    --white: #f4f5f6;
    --gray: #596c7c;
}

a {
    color: var(--white);
}

a:hover {
    text-decoration: underline;
}

body {
    font: 12pt "Ubuntu", sans-serif;;
    color: var(--white);
    background-color: var(--black);
}

.container {
    width: 80vw;
    max-width: 1024px;
    height: 100vh;
    max-height: auto;
    margin: auto;
    display: flex;
    align-items: center;
}

.center {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
    margin: auto;
    padding: 100px 0;
}

.profile {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
    padding: 50px;

    h1 {
        font-size: 50px;
        
        strong {
            color: var(--green);
        }
    }
}

@media screen and (max-width: 920px) {
    .profile {
        align-items: center;
        text-align: center;
    }
}

.social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
}

.social a {
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: var(--green);
    background-color: var(--bgreen);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 180px;
    text-decoration: none;
}

.social a:hover {
    color: var(--bgreen);
    background-color: var(--green);
}

.photo {
    width: 200px;
    height: 200px;
    background-color: gray;
    border-radius: 180px;
}

.menu {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

details {
    background-color: var(--green);
    width: 300px;
    height: auto;
    min-height: 60px;
    border-radius: 20px;
    line-height: 60px;
    padding: 0 30px;
    position: relative;
    cursor: pointer;
    
    summary {
        color: var(--bgreen);
        font-weight: 500;
    }

    summary::after {
        content: "+";
        position: absolute;
        right: 30px;
    }

    div {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding: 10px;
    }
        
    span {
        font-size: 10pt;
        background: var(--bgreen);
        padding: 3px 6px;
        border-radius: 5px;
        line-height: normal;
    }

}

details[open] summary::after {
    content: "-";
}

details p {
    width: 300px;
    transform: translateY(5px) translateX(-30px);
    line-height: normal;
    padding: 20px;
    color: var(--white);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--bgreen);
}

.contact {
    background-color: var(--bgreen);
    line-height: 40px;
    padding: 20px;
    width: 300px;
    transform: translateY(5px) translateX(-30px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

h1 > strong:after {
	content: "_";
	animation: flash 0.7s step-end infinite;
}

@keyframes flash {
	50% {
		opacity: 0;
	}
}
