@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --card-background: #f8f8f8;
    --card-border: var(--black);
    --text-color: var(--black);
    --skill-background: var(--deep-purple);
    --website-background: var(--orchid-light-purple);

    --deep-purple: #4B0082;
    --hot-pink: #FF69B4;
    --black: #000000;
    --light-pink: #FFB6C1;
    --silver: #C0C0C0;

    --orchid-purple: #DA70D6;
    --orchid-light-purple: #D8BFD8;
    --orchid-pink: #FF00FF;
    --orchid-green: #00FF7F;
    --orchid-yellow: #FFFFE0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--website-background);
    /* Light Pink background */
}

.card {
    background-color: var(--card-background);
    border: 2px solid var(--card-border);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.card-img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
}

h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.skills-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skills-list li {
    background-color: var(--deep-purple);
    color: var(--silver);
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    flex: 0 1 calc(50% - 20px);
    text-align: center;
}

svg {
    height: 30px;
    width: 30px;
}

a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 
  } 
  a:hover { 
    text-decoration: none; 
  } 
  a:active { 
    text-decoration: none; 
  }
  