@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}
.main {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 600px;
    z-index: 100;
    overflow: hidden;
}
.logoBox {
    width: 100px;
    height: 100px;
    overflow: hidden;
}
h1 {
    font-size: 3.4rem;
    font-weight: 900;
}
p {
    text-align: center;
    margin-bottom: 40px;
}
.socialLinks {
    width: 100%;
    display: flex;
    justify-content: center;
}
a {
    display: inline-block;
    margin:0 20px;
    padding: 10px 30px;
    border-radius: 20px;
    width: 200px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 3px 1px #076ba8;
    color: #076ba8;
    background-color: #e4405e00;
    transition: all .3s ease-in-out;
}
a:nth-child(1):hover {
    box-shadow: 0px 0px 3px 1px #0866FF;
    color: #ffffff;
    background-color: #0866FF;
}
a:nth-child(2):hover {
    box-shadow: 0px 0px 3px 1px #E4405F;
    color: #ffffff;
    background-color: #E4405F;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.bg svg:nth-child(1) {
    transform: translate(-47%, -50%);
}
.bg svg:nth-child(2) {
    transform: translate(136%, -126%);
}
.bg svg:nth-child(3) {
    transform: translate(36%, -137%);
}

@media screen and (max-width: 600px) {
    .hero {
        height: 700px;
        gap: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 14px;
        width: 90%;
    }
    .socialLinks {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    a {
        display: block;
        width: 90%;
    }

    .bg svg:nth-child(1) {
        transform: translate(-60%, -75%);
    }
    .bg svg:nth-child(3) {
        transform: translate(-32%, -126%);
    }
  }