
html, body{
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.heading{
    height: 65vh;
    width: 100vw;
}

.heading{
    background-image: url("bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

nav{
    display: flex;
    gap: 100px;
    padding: 25px;
    margin-left: 42vw;
}

nav a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}

nav a:hover{
    color: red;
}

.heading img{
    height: 60vh;
    width: 31vw;
    position: relative;
    top: -8vh;
    left: 8vw;
}

.heading h1{
    position: absolute;
    top: 12vh;
    left: 58vw;
    color: white;
    font-size: 55px;
}

.heading h2{
    position: absolute;
    top: 30vh;
    left: 58vw;
    color: #63A9C5;
    font-size: 35px;
}

.heading button{
    position: absolute;
    top: 46vh;
    left: 59vw;
    /* color: #63A9C5; */
    font-size: 15px;
    background-color: #1E3A67;
    color: white;
    border: 0px;
    border-radius: 2px;
}

h1{
    text-align: center;
}

.container{
    height: 60vh;
    width: 100vw;
    /* border: 1px solid black; */
}

.container{
    display: flex;
    gap: 3vw;
}
.child_container{
    height: 250px;
    width: 460px;
    /* border: 2px solid black; */
    margin: 38px 75px;
}

#conta1{
    background-image: url("laptop-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.child_container p{
    position: relative;
    top: 28px;
}

.child_container button{
    position: relative;
    top: 28px;
    font-size: 15px;
    background-color: #1F3B67;
    color: white;
}