*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;

    background:#0e0e0e;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:40px 20px;

}

.container{

    width:100%;

    max-width:420px;

    text-align:center;

}

.logo{

    width:150px;

    margin-bottom:20px;

}

.profile{

    width:175px;

    height:175px;

    object-fit:cover;
    
    object-position: center 20%;

    border-radius:10px;

    border:2px solid #FBB440;

    margin-bottom:25px;

}

h1{

    font-size:40px;

    font-weight:800;

}

.subtitle{

    color:#bdbdbd;

    margin:15px 0 35px;

    line-height:1.2;

}

.button{

    display:block;

    text-decoration:none;

    color:white;

    background:#1d1d1d;

    padding:18px;

    margin-bottom:16px;

    border-radius:18px;

    font-weight:600;

    transition:.25s;

    border:1px solid #303030;

}

.button:hover{

    background:#FBB440;

    color:black;

    transform:translateY(-3px);

}

.email{

    margin-top:30px;

    background:#111;

}

.sponsors {
    width: 100%;
    margin-top: 16px;
}

.sponsors summary {
    list-style: none;
    cursor: pointer;

    background: #1d1d1d;
    color: white;

    padding: 18px;
    border-radius: 18px;

    border: 1px solid #303030;

    font-size: 16px;
    font-weight: 600;

    text-align: center;

    transition: 0.25s;
}

/* Remove the default triangle */
.sponsors summary::-webkit-details-marker {
    display: none;
}


.sponsors summary:hover {
    background: #FFD54F;
    color: black;
}

.sponsor-content {
    margin-top: 15px;
}

.sponsor-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}