*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(315deg, rgb(228, 162, 245) 0%, rgb(143, 224, 243) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-box{
    margin-top: 150px;
    margin-bottom: 150px;
    background-color: rgb(151, 91, 185);
    text-align: center;
    padding: 40px 90px;
    color: black;
    position: relative;
    border-radius: 10px;
}

.profile-box img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

h3, h1{
    font-family: 'Times New Roman', Times, serif;
    font-size: xx-large;
}

.close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    cursor: pointer;
  }