
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1B3C53;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #456882;
    padding: 10px;
    background-color: #234C6A;
    border-radius: 10px;
    box-shadow: 1px;
    color: #E3E3E3;
    position: relative;
    min-height: 350px;
    max-width: 400px;
    font-family: "Rubik", sans-serif;
    text-align: center;
     
}

.image {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -90px;
   
}

.image img {
    width: 100%;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid #e3e3e3aa;
}


p {
    color: #e3e3e3af;
    margin: 20px 0;
}

ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

ul li {
    margin: 0 5px;

}

ul li a {
    font-size: 25px;
    color: #e3e3e389;
    display: inline-block;
    transition: all .3s;
}

ul li a:hover {
    color: #E3E3E3;
    transform: translateY(-3px);
}