#background{
    background-image: url(./background1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#circlelogo{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}
#white{
    color:#ffffff;
}
#boxtext{
    display: flex;
    justify-content: center;
    color:#ffffff;
    text-decoration: none;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.rectangle{
    width: 400px;
    height: 300px;
    background-color: rgba(0,0,0,0.3);
    /*border: 2px solid #ffffff;*/
    border-radius: 10px;
}
.btn-rounded{
    background-color: rgba(255,255,255,0.5);
    border: none;
    color: white;
    padding: 12px 150px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px auto;
    transition: background-color 0.3s ease;
}
.button1{padding: 12px 145px}
.btn-rounded:hover{
    background-color: rgba(255,255,255,0.7);
}
.btn-rounded:active{
    transform: scale(0.98);
}
.bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}