@import url('https://fonts.googleapis.com/css2?family=Bitcount+Single&display=swap');

body {
    font-family: "Bitcount Single", system-ui;
    background-image: url("./images/background.png");
    background-size: cover;
    background-position: center;
    color: green;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid green;
    border-radius: 20px;
    background-color: black;
    height: 80px;
}

h1 {
    font-size: 50px;
}

.aside {
    display: flex;
    justify-content: space-evenly;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.profileCard {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 5px solid green;
    border-radius: 20px;
    background-color: black;
    height: 200px;
    width: 560px;
    margin: 80px 0px 60px 0px;
}

.profileCard img {
    height: 150px;
    border: 3px dashed green;
    border-radius: 20px;
    padding: 5px;
}

.profileContent {
    position: relative;
    bottom: 20px;
}

.profileContent h2 {
    font-size: 30px;
    text-align: center;
    border-bottom: 2px solid green;
    margin-bottom: 10px;
}

.profileList {
    display: flex;
    align-items: center;
}

.profileList h3 {
    margin: 0px;
}

.profileList h4 {
    margin: 5px;
}

.resume {
    text-align: center;
    margin-top: 15px;
}

.resume a {
    text-align: center;
    text-decoration: none;
    color: green;
    border: 3px dashed green;
    border-radius: 20px;
    padding: 5px 20px 5px 20px;
}

.resume a:hover {
    box-shadow: 0 0 50px rgba(21, 255, 0, 0.5);
    cursor: pointer;
}

.contactCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    border: 5px solid green;
    border-radius: 20px;
    height: 200px;
    width: 560px;
}

.contactCard h2 {
    font-size: 30px;
    border-bottom: 2px solid green;
    padding: 0px 50px;
}

.contactList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    height: 100%;
}

.contactList a {
    color: green;
    font-size: 20px;
    text-decoration: none;
    border: 3px dashed green;
    border-radius: 20px;
    padding: 5px 20px 5px 20px;
    margin: 0px 10px 0px 10px;
}

.contactList a:hover {
    box-shadow: 0 0 50px rgba(21, 255, 0, 0.5);
    cursor: pointer;
}

.projectCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    border: 5px solid green;
    border-radius: 20px;
    margin-top: 80px;
    height: 100%;
    width: 50%;
}

.projectCard h2 {
    font-size: 30px;
    border-bottom: 2px solid green;
    padding: 0px 50px;
}

.projectList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.projectList a{
    margin-bottom: 30px;
}

.projectList a img {
    height: 150px;
    width: 300px;
    border-radius: 20px;
    border: 3px dashed green;
    padding: 5px;
}

.projectList a img:hover {
    box-shadow: 0 0 50px rgba(21, 255, 0, 0.5);
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .aside {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profileCard {
        margin: 40px 0px 40px 0px;
    }

    .contactCard {
        display: none;
    }

    .projectCard {
        width: 560px;
        margin: 0px 0px 40px 0px;

    }

    .contactHidden {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        background-color: black;
        border: 5px solid green;
        border-radius: 20px;
        height: 200px;
        width: 560px;
        margin: 0px 0px 40px 0px;
    }
    
    .contactHidden h2 {
        font-size: 30px;
        border-bottom: 2px solid green;
        padding: 0px 50px;
    }
}

@media screen and (max-width: 600px) {
    header h1{
        font-size: 30px;
    }
    .profileCard {
        width: 100%;
    }

    .profileContent {
        font-size: 12px;
        margin: 10px;
    }

    .profileContent h2 {
        font-size: 24px;
    }
    
    .profileCard img {
        margin: 0px 0px 0px 10px;
    }

    .projectCard {
        width: 100%;
    }

    .contactHidden {
        height: 100%;
        width: 100%;
        padding-bottom: 20px;
    }

    .contactList a {
        margin: 10px;
    }
}

@media screen and (max-width: 460px) {
    .profileContent {
        font-size: 8px;
    }

    .resume a {
        font-size: 10px;
    }
}
