
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body{
    background-color: #0F172A;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
}

.container{
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.circle-1{
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(13,148,136,0.12);
    top: 700px;
    left: -100px;
}

.circle-2{
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(13,148,136,0.12);
    top: -100px;
    right: -100px;
}

.logo-img {
    width: 100px;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
h1{
    font-weight: 500;
    letter-spacing: 6px;
    color: #0D9488;
    text-align: center;
}
h3{
    font-size: 18px;
    text-align: center;
    width: 550px;
    color: #F1F5F9;
}
p{
    font-weight: 400;
    font-size: 14px;
    color: #64748B;
}
.separator {
    height: 3px;
    width: 10%;
    background-color: #0D9488;
    border-radius: 20px;
}
.email {
    font-weight: 400;
    font-size: 14px;
    color: #14B8A6;
}
a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.email-icon{
    color: #14B8A6;
}
.container-contact{
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: rgba(13,148,136,0.1);
    border: 1px solid rgba(13,148,136,0.25);
    border-radius: 10px;
}