*{
    font-family: "Afacad Flux", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(215deg, #00630094, rgba(0, 0, 0, 1)), url(../imgs/bg-tile.png);
    background-repeat: repeat;
    background-size: auto;
    background-position:center;
    color: white;
    backdrop-filter: blur(3px);
}

.wrapper {
    display: flex;

    width: 500px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid white;
    color: white;
    padding: 30px 40px;

    align-items: center;
    justify-content: center;
}

.wrapper h1{
    font-size: 24px;
    text-align: center;
}

.wrapper img {
    width: 256px;
    color: white;
    height: auto;
}

.wrapper hr {
    border-top: 2px solid white;
    margin-bottom: 20px;
    margin-top: 20px;
}

.navlist ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;

    gap: 20px;

}

.navlist ul li {
    width: 100%;
    height: 40px;
}

.navlist ul li a {
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 10px;
    display: flex;
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;

    transition: all 150ms ease-out;

    will-change: transform
}

.navlist ul li a:hover {
    background-color: #00d300;
    box-shadow: 0px 1px 10px #00ff00;
    color: black;
    font-weight: 500;
    font-size: 20px;
    transform: scale(110%);
}

.navlist ul li a.disabled {
    pointer-events: none;
    cursor: default;
    background-color: gray;
}

.socials ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style-type: none;

    margin: 0;
    padding: 0;

    gap: 20px;
}

.socials ul li a{
    display: flex;
    justify-content: center;
    align-content: center;
    color: white;
    font-size: 32px;
    background-color: transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 100ms ease-in-out;
    padding: 10px;

    will-change: transform
}

.socials ul li a:hover{
    color: black;
    background-color: #00ff00;
    box-shadow: 0px 1px 10px #00ff00;
    transform: scale(110%);
}

.display-section{
    display: grid;
    grid-template-columns: auto auto;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 20px;
    color: white;
    margin: 50px;
}

.display-section h1 {
    font-size: 32px;
    text-align: center;
}

.display {
    display: flex;

    width: 400px;
    height: 200px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid white;
    color: white;
    padding: 30px 40px;
    gap: 15px;
    transition: all 100ms ease-in-out;
    align-items: top;
    justify-content: left;

    will-change: transform
}
.display:hover{
    border-color: #00d300;
    box-shadow: 0px 1px 10px #00ff00;
    transform: scale(110%);
}

.display img {
    border-radius: 20px;
    height: 200px;
}

.display .info {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.display .info h1{
    font-size: 24px;
    text-align: left;
    padding: 0;
    margin: 0;
}

.display .info p{
    font-size: 16px;
    color: lightgray;
    line-height: 20px;
}

.display .info a{
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 10px;
    display: flex;
    text-align: center;
    height: 40px;
    justify-content: center;
    align-items: center;

    transition: all 150ms ease-out;
}

.display .info a.disabled{
    pointer-events: none;
    cursor: default;
    background-color: gray;
}


.display .info a:hover{
    color: black;
    background-color: #00d300;
    box-shadow: 0px 1px 10px #00ff00;
}

.about-me {
    display: flex;
    width: 400px;
    height: auto;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid white;
    color: white;
    padding: 30px 40px;
    margin: 10px;
    gap: 15px;
    transition: all 100ms ease-in-out;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-me h1{
    font-size: 24px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.about-me img{
    width: 200px;
}

.contact-info{
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.contact-info i {
    font-size: 24px;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header a{
    display: flex;
    justify-content: center;
    align-content: center;
    color: white;
    font-size: 32px;
    background-color: transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 100ms ease-in-out;
    padding: 10px;
}
.socials ul li a i{
    border-radius: 50px;
    transition: all 100ms ease-in-out;
}
.socials ul li a i:hover{
    color: black;
    background-color: #00d300;
    box-shadow: 0px 1px 10px #00ff00;
}

.container{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1000px) {
    .display-section{ 
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 512px) {
    .display{
        width: 300px;
        padding: 10px;
    }

    .display img{
        width: 100px;
        height: 100px;
    }

    .about-me{
        width: 256px;
        padding: 20px;
        font-size: 12px;
    }

    
    .wrapper{
        width: 300px;
    }
}