* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
    --primary-color: #0281c1;
    --background-color: #000211;
}
body {
    background: #000211;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    position: relative;

}
footer {
    font-family: 'Roboto', sans-serif;
            display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
   
}

header {
    height: 72px;
    
    font-size: 32px;
    padding: 48px 72px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.circle {
    position: absolute;
    width: 440px;
    height: 440px;
    background: #00094F;
    filter: blur(150px);
    left: 850px;
    top: 200px;
    z-index: -1;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 72px;
}

.info {
    display: flex;
    flex-direction: column;
    width: 500px;
    gap: 24px;
}

.info h1 {
    font-size: 48px;
    color: var(--primary-color);
}

.info p {
    font-size: 24px;

}

.image {
    width: 500px;
}
.image-logo {
    margin-top: 200px;
    width: 250px;
     
}

main a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    height: 40;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    padding: 8px;
    text-decoration: none;
}

main a img {
    width: 32px;
}

main a div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

main a:hover {
    background: #fff;
    color: #000211;
    cursor: pointer;
    transition: 0.25s all;

}



@media (max-width: 720px) {
    header {
        justify-content: center;
 color: --primary-color;
    }

    main {
        display: flex;
        flex-direction: column;
        padding: 24px;

    }

    .info {
        display: flex;
        flex-direction: column;
        width: 330px;
        justify-content: center;
        align-items: center;
        margin-bottom: 32px;
    }

    .info h1 {
        font-size: 32px;
        text-align: center;

    }

    .info p {
        font-size: 18px;
        text-align: center;
    }

    .image {
        
        width: 300px;
    }
    .image-logo {
 margin-top: 32px;
        width: 100px;
    }


    main a {
        position: absolute;
        top: 100%;
    }
}