@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: Inter, Arial;
    color: white;
}

html {
    background-color: #1E1E1E;
}

a {
    text-decoration: none;
}

.main-container h1,
.toolbox-img,
.circle-background,
.main-container h4,
.img-down-arrow,
.button-container {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}

.main-container h1 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation-delay: 0.1s;
}

.toolbox-wrapper {
    position: relative;
    width: 200px;
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

.circle-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 50%;
    z-index: 0;
    animation-delay: 0.3s;
}   

.toolbox-img {
  position: relative;
  width: 100%;
  z-index: 1;
  animation-delay: 0.2s;
}

.main-container h4 {
    font-weight: 600;
    font-style: italic;
    color: #A0A0A0;
    width: 500px;
    text-align: center;
    margin-bottom: 10px;
    animation-delay: 0.4s;
    line-height: 1.3rem;
}

.img-down-arrow {
    width: auto;
    height: 1.6rem;
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease forwards, bounceDown 2s ease-in-out infinite;
    animation-delay: 0.5s, 0.6s;
}

.button-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    border: 1px solid #A0A0A0;
    border-radius: 2px;
    gap: 20px;
    animation-delay: 0.6s;   
}

.btn {
    display: flex;
    flex-direction: row-reverse;
    border: none;
    border-radius: 4px;
    padding: 0.3rem 15px;
    gap: 6px;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    transform: scale(1);
}

.btn img {
    width: auto;
    height: 1.2rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 1px 12px rgba(255, 255, 255, 0.429);
    cursor: pointer;
    opacity: 1;
}

.btn-github {
    background-color: white;
}

.btn-github p {
    color: black;
    font-weight: 600;
}

.btn-facebook {
    background-color: #0866FF;
}

.btn-facebook:hover {
    box-shadow: 0 1px 12px rgba(0, 98, 255, 0.761);
}

.btn-facebook p {
    font-weight: 600;
}

.btn-linkedin {
    background-color: #0A66C2;
}

.btn-linkedin p {
    font-weight: 600;
}

.btn-linkedin:hover {
        box-shadow: 0 1px 12px rgba(0, 119, 255, 0.768);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}



@media (max-width: 670px) {
    .main-container h4 {
        width: 90%;
    } 
    .button-container {
        margin: 0px 10px;
        padding: 10px;  
        gap: 10px;
    }
}