body {
    background: rgb(0,125,196);
    background: linear-gradient(90deg, rgba(0,125,196,1) 0%, rgba(0,98,187,1) 77%, rgba(0,126,255,1) 100%);
    background-image: url('Resources/Background.png');
}

h1 {
    color: white;
    text-align: center;
}

#intro {
    border-style: solid;
    border-color: white;
    border-radius: 5%;
    background: rgb(0,125,196);
    background: linear-gradient(180deg, rgba(0,125,196,1) 0%, rgba(0,98,187,1) 77%, rgba(0,126,255,1) 100%);
    margin: auto;
    margin-top: 10%;
}

#KrushPFP {
    border-radius: 10%;
    width: 100px;
    height: 100px;
    border-color: white;
    border-style: solid;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20%;
}

#introtext1 {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

#ScriptingButton {
    float: left;
    background-color: #007BFF;
    color: white;
    border-color: white;
    border-style: solid;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: linear-gradient(45deg, rgb(0, 132, 255) 0%,rgb(0, 174, 255) 50%, rgb(0, 94, 216) 100%);
}

#ScriptingButton:hover {
    background-color: #0056b3;
}

#UIUXButton {
    float: right;
    background-color: #007BFF;
    color: white;
    border-color: white;
    border-style: solid;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: linear-gradient(45deg, rgb(255, 44, 16) 0%,rgb(255, 63, 63) 50%, rgb(216, 0, 0) 100%);
}

#GFXButton {
    float: right;
    background-color: #00ff00;
    color: white;
    border-color: white;
    border-style: solid;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: linear-gradient(45deg, rgb(64, 255, 16) 0%,rgb(0, 187, 31) 50%, rgb(94, 255, 0) 100%);
}

#roblox {
    border-color: rgb(255, 255, 255);
    border-radius: 10px;
    border-style: solid;
    background-color: rgb(88, 88, 88);
}

#youtube {
    border-color: rgb(255, 255, 255);
    border-radius: 10px;
    border-style: solid;
    background-color: rgb(255, 0, 0);
}

#discord {
    border-color: rgb(255, 255, 255);
    border-radius: 10px;
    border-style: solid;
    background-color: rgb(0, 132, 255);
}

#externals-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 470px;
    height: 400px;
    margin: auto;
}

.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
  }
  
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
    border-radius: 10px;
}
  
.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    margin-top: 5%;
    border-radius: 10px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown a:hover {background-color: #ddd;}
  
.show {display: block;}
