*{
    margin: 0;
    padding: 0;
}
.container{
    height: 100vh;
    background-color: rgb(0, 110, 255);
}
nav{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-around;
}
h1{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 40px;
}
h1 span{
    color: rgb(255, 194, 103);
}
nav ul li{
    list-style: none;
    margin-right: 30px;
    margin-top: 15px;
}
nav a{
    text-decoration: none;
    display: inline-block;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
nav button{
    width: 50px;
    height: 30px;
    border-radius: 5px;
    border: transparent;
    margin-top: 9px;
    background-color: rgb(209, 167, 112);
}
nav button a{
    color: black;
}
main{
    margin-top: 100px;
    margin-left: 70px;
}
main p{
    width: 620px;
    position: absolute;
    top: 225px;
    font-size: large;
}
main img{
    width: 380px;
    position: absolute;
    right:  60px;
    top: 120px;
    border-radius: 20%;
}
main .border{
    width: 384px;
    height: 348px;
    position: absolute;
    right: 60px;
    top: 112px;
    border: 2px rgb(111, 0, 255) solid;
    border-radius: 20%;
    background-color: rgb(111, 0, 255);
}
main button{
    position: absolute;
    top: 330px;
    background-color: rgb(209, 167, 112);
    width: 150px;
    height: 40px;
    border-radius: 5px;
    border: transparent;
    margin-top: 9px;
    font-size: 14px;
}
main button a{
    text-decoration: none;
    display: inline-block;
    color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
}