* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "JetBrains Mono", monospace;
}

body {
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='30' viewBox='0 0 1000 120'%3E%3Cg fill='none' stroke='%23222' stroke-width='10' %3E%3Cpath d='M-500 75c0 0 125-30 250-30S0 75 0 75s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 45c0 0 125-30 250-30S0 45 0 45s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 105c0 0 125-30 250-30S0 105 0 105s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 15c0 0 125-30 250-30S0 15 0 15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500-15c0 0 125-30 250-30S0-15 0-15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 135c0 0 125-30 250-30S0 135 0 135s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3C/g%3E%3C/svg%3E");
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar {
    width: 100%;
}

.container, .container-fluid {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.card {
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box; 
}

#tools {
    background-color: white;
}

#landing {
    background-color: white;
}

#landing h1 {
    font-size: 100px;
    text-align: center;
    margin-top: 20px;
    color: black;
}


#landing h5{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    color: black;
}

#landing p {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    color: black;
}

#icons img {
    max-width: 100%;
}

#resume-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#resume-button:hover {
    background-color: grey;
    transform: scale(1.1);
}

#submit {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#submit:hover {
    background-color: grey;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #self-portrait {
        width: 100%; 
        height: auto;
    }
}

.fa-envelope, .fa-facebook, .fa-twitter, .fa-instagram, .fa-github, .fa-linkedin {
    font-size: 60px;
    color: white;
    margin: 0 20px;
}

.fa-envelope:hover, .fa-facebook:hover, .fa-twitter:hover, .fa-instagram:hover,
.fa-github:hover, .fa-linkedin:hover {
    color: grey;
    transform: scale(1.4);
    transition: transform 0.3s ease;
}

#tools img {
  transition: transform 0.3s ease;
}

#tools img:hover {  
  transform: scale(1.3); 
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.09);
}

.card-text {
  text-align: justify;
  font-size: 15px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}