* {
    box-sizing: border-box;
}

body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    margin: 0;
    background: rgb(1,174,239);
    background: linear-gradient(180deg, rgba(1,174,239,1) 0%, rgba(1,87,120,1) 100%);
    height: 100vh;
}


#content {
    position: absolute;
    margin-top: 0px;
    z-index: 2;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    height: 100%;
    margin-left: -225px;
    left: 50%;
    /* overflow: scroll; */
    max-width: 450px;
    width: 100%;

}

.round_content{
    position: relative;
    top: 65px;
    padding-top: 20px;
    width: 135px;
    line-height: 50px;
    background: #b7d8eb;
    z-index: 6;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 125px;
    height: 135px;
    left: 50%;
    margin-left: -67px;
}
#menu-content {
    background-color:#b7d8eb;
    border-radius: 10px;
    padding:120px 20px 60px 20px;
    width: 450px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
}

#menu-content>a {
    display: block;
    background-color: #1C3B19;
    color: #ffffff;
    text-align: center;
    padding: 5px 10px;
    width: 100%;
    margin: 10px 0;
    border-radius: 50%;
}

#logo {
    width: 125px;
    height: 125px;
    display: flex;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    background-image: url(logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 40px;

}


section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    text-align: center;
    width: 80%;
    max-width: 450px;
    border-radius: 13px;
}

section a {
    border-radius: 20px;
    /* white-space: nowrap; */
    width: 100%;
    max-width: 400px;
    min-height: 40px;
    color: #ffffff;
    background: #01AEEF;
    margin-top: 15px;
    text-decoration: none;
    line-height: 15px;
    display: flex;
    text-align: left;
    justify-content: left;
    align-items: center;
    gap: 4px;
    padding: 10px 20px;
}

section a img{
    background-color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 10px;
    padding: 4px;
    margin-right: 7px;
}
section a:first-child {
    margin-top: 0px;
}

section a b {
    font-weight: 600;
}
article {
    text-align: left;
    line-height: 1.6;
    width: 90%;
}

section a.active,
section a:hover {
    filter: brightness(0.7);
}

@media (max-width:768px) {
   
    #logo{
        width: 100%;
    }

    article{
        width: 100%;
    }
    #content{
        padding: 10px 10px 50px 10px !important;
        margin-left: 0;
        left: inherit;
    }

    #menu-content {
        padding: 120px 20px 50px 20px;
        width: 100%;
    }
    section a {
        width: 100%;
    }
}

